Skip to content

Commit ad36937

Browse files
committed
Generated Sample Programs website automatically
on-behalf-of: @TheRenegadeCoder <jeremy.grifski@therenegadecoder.com>
1 parent f3ac2e9 commit ad36937

File tree

5 files changed

+77
-7
lines changed

5 files changed

+77
-7
lines changed

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ layout: default
55
title: Sample Programs in Every Language
66
---
77

8-
Welcome to Sample Programs in Every Language, a collection of code snippets in as many languages as possible. Thanks for taking an interest in our collection which currently contains 1167 articles written by 260 authors.
8+
Welcome to Sample Programs in Every Language, a collection of code snippets in as many languages as possible. Thanks for taking an interest in our collection which currently contains 1168 articles written by 260 authors.
99

1010
If you'd like to contribute to this growing collection, check out our [contributing document](https://github.com/TheRenegadeCoder/sample-programs/blob/master/.github/CONTRIBUTING.md) for more information. In addition, you can explore our documentation which is organized by [project](/projects) and by [language](/languages). If you don't find what you're look for, check out our list of related [open-source projects](/related). Finally, if code isn't your thing but you'd still like to help, there are plenty of other ways to [support the project](https://therenegadecoder.com/updates/5-ways-you-can-support-the-renegade-coder/).

docs/languages/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ layout: default
66
title: Programming Languages
77
---
88

9-
Welcome to the Languages page! Here, you'll find a list of all of the languages represented in the collection. At this time, there are 154 languages, of which 153 are tested, 1 is untestable, and 976 code snippets.
9+
Welcome to the Languages page! Here, you'll find a list of all of the languages represented in the collection. At this time, there are 154 languages, of which 153 are tested, 1 is untestable, and 977 code snippets.
1010

1111
## Language Collections by Letter
1212

@@ -200,10 +200,10 @@ The 'K' collection contains 3 languages, of which 3 are tested, and 21 code snip
200200

201201
### L
202202

203-
The 'L' collection contains 9 languages, of which 9 are tested, and 36 code snippets.
203+
The 'L' collection contains 9 languages, of which 9 are tested, and 37 code snippets.
204204

205205
- [Latte](https://sampleprograms.io/languages/latte) (1 code snippet)
206-
- [Lily](https://sampleprograms.io/languages/lily) (1 code snippet)
206+
- [Lily](https://sampleprograms.io/languages/lily) (2 code snippets)
207207
- [Lisp](https://sampleprograms.io/languages/lisp) (10 code snippets)
208208
- [Little](https://sampleprograms.io/languages/little) (2 code snippets)
209209
- [Livescript](https://sampleprograms.io/languages/livescript) (2 code snippets)

docs/languages/lily/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
date: 2018-04-22
33
featured-image: programming-languages.jpg
4-
last-modified: 2018-04-22
4+
last-modified: 2024-12-27
55
layout: default
66
tags:
77
- lily
@@ -26,6 +26,7 @@ No 'Description' section available. [Please consider contributing](https://githu
2626

2727
## Articles
2828

29-
There is 1 article:
29+
There are 2 articles:
3030

31+
- [Baklava in Lily](https://sampleprograms.io/projects/baklava/lily)
3132
- [Hello World in Lily](https://sampleprograms.io/projects/hello-world/lily)

docs/projects/baklava/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Verify that the actual output matches the expected output
7979

8080
## Articles
8181

82-
There are 95 articles:
82+
There are 96 articles:
8383

8484
- [Baklava in Ada](https://sampleprograms.io/projects/baklava/ada)
8585
- [Baklava in Algol68](https://sampleprograms.io/projects/baklava/algol68)
@@ -108,6 +108,7 @@ There are 95 articles:
108108
- [Baklava in Javascript](https://sampleprograms.io/projects/baklava/javascript)
109109
- [Baklava in Julia](https://sampleprograms.io/projects/baklava/julia)
110110
- [Baklava in Kotlin](https://sampleprograms.io/projects/baklava/kotlin)
111+
- [Baklava in Lily](https://sampleprograms.io/projects/baklava/lily)
111112
- [Baklava in Lisp](https://sampleprograms.io/projects/baklava/lisp)
112113
- [Baklava in Little](https://sampleprograms.io/projects/baklava/little)
113114
- [Baklava in Livescript](https://sampleprograms.io/projects/baklava/livescript)
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
authors:
3+
- rzuckerm
4+
date: 2024-12-27
5+
featured-image: baklava-in-every-language.jpg
6+
last-modified: 2024-12-27
7+
layout: default
8+
tags:
9+
- baklava
10+
- lily
11+
title: Baklava in Lily
12+
---
13+
14+
<!--
15+
AUTO-GENERATED -- PLEASE DO NOT EDIT!
16+
17+
Instead, please edit the following:
18+
19+
- sources/programs/baklava/lily/how-to-implement-the-solution.md
20+
- sources/programs/baklava/lily/how-to-run-the-solution.md
21+
22+
See .github/CONTRIBUTING.md for further details.
23+
-->
24+
25+
Welcome to the [Baklava](https://sampleprograms.io/projects/baklava) in [Lily](https://sampleprograms.io/languages/lily) page! Here, you'll find the source code for this program as well as a description of how the program works.
26+
27+
## Current Solution
28+
29+
{% raw %}
30+
31+
```lily
32+
import math
33+
34+
define repeatString(s: String, n: Integer): String
35+
{
36+
var result = ""
37+
if n > 0: {
38+
for i in 1...n: {
39+
result = "{0}{1}".format(result, s)
40+
}
41+
}
42+
43+
return result
44+
}
45+
46+
for n in -10...10: {
47+
var num_spaces = math.abs(n)
48+
var num_stars = 21 - 2 * num_spaces
49+
print("{0}{1}".format(repeatString(" ", num_spaces), repeatString("*", num_stars)))
50+
}
51+
52+
```
53+
54+
{% endraw %}
55+
56+
Baklava in [Lily](https://sampleprograms.io/languages/lily) was written by:
57+
58+
- rzuckerm
59+
60+
If you see anything you'd like to change or update, [please consider contributing](https://github.com/TheRenegadeCoder/sample-programs).
61+
62+
## How to Implement the Solution
63+
64+
No 'How to Implement the Solution' section available. [Please consider contributing](https://github.com/TheRenegadeCoder/sample-programs-website).
65+
66+
## How to Run the Solution
67+
68+
No 'How to Run the Solution' section available. [Please consider contributing](https://github.com/TheRenegadeCoder/sample-programs-website).

0 commit comments

Comments
 (0)