You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 1162 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 1163 articles written by 260 authors.
9
9
10
10
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/).
Copy file name to clipboardExpand all lines: docs/languages/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
2
date: 2018-03-15
3
3
featured-image: programming-languages.jpg
4
-
last-modified: 2024-12-23
4
+
last-modified: 2024-12-27
5
5
layout: default
6
6
title: Programming Languages
7
7
---
8
8
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 971 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 972 code snippets.
10
10
11
11
## Language Collections by Letter
12
12
@@ -200,7 +200,7 @@ The 'K' collection contains 3 languages, of which 3 are tested, and 21 code snip
200
200
201
201
### L
202
202
203
-
The 'L' collection contains 9 languages, of which 9 are tested, and 31 code snippets.
203
+
The 'L' collection contains 9 languages, of which 9 are tested, and 32 code snippets.
Welcome to the [Baklava](https://sampleprograms.io/projects/baklava) in [Lucee](https://sampleprograms.io/languages/lucee) 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
+
```lucee
32
+
<html>
33
+
<head>
34
+
<title>Baklava</title>
35
+
</head>
36
+
<body>
37
+
<pre><cfscript>
38
+
for (n = -10; n <= 10; n++) {
39
+
numSpaces = abs(n);
40
+
numStars = 21 - 2 * numSpaces;
41
+
spaces = repeatString(" ", numSpaces);
42
+
stars = repeatString("*", numStars);
43
+
writeOutput(spaces & stars & "<br>");
44
+
}
45
+
</cfscript></pre>
46
+
</body>
47
+
</html>
48
+
49
+
```
50
+
51
+
{% endraw %}
52
+
53
+
Baklava in [Lucee](https://sampleprograms.io/languages/lucee) was written by:
54
+
55
+
- rzuckerm
56
+
57
+
If you see anything you'd like to change or update, [please consider contributing](https://github.com/TheRenegadeCoder/sample-programs).
58
+
59
+
## How to Implement the Solution
60
+
61
+
No 'How to Implement the Solution' section available. [Please consider contributing](https://github.com/TheRenegadeCoder/sample-programs-website).
62
+
63
+
## How to Run the Solution
64
+
65
+
No 'How to Run the Solution' section available. [Please consider contributing](https://github.com/TheRenegadeCoder/sample-programs-website).
0 commit comments