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
Copy file name to clipboardExpand all lines: docs/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,6 @@ layout: default
5
5
title: Sample Programs in Every Language
6
6
---
7
7
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 1182 articles written by 259 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 1183 articles written by 259 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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ 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 991 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 992 code snippets.
10
10
11
11
## Language Collections by Letter
12
12
@@ -141,14 +141,14 @@ The 'F' collection contains 12 languages, of which 12 are tested, and 21 code sn
141
141
142
142
### G
143
143
144
-
The 'G' collection contains 11 languages, of which 11 are tested, and 54 code snippets.
144
+
The 'G' collection contains 11 languages, of which 11 are tested, and 55 code snippets.
Welcome to the [Baklava](https://sampleprograms.io/projects/baklava) in [Golo](https://sampleprograms.io/languages/golo) 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
+
```golo
32
+
module baklava
33
+
34
+
function main = |args| {
35
+
for (var n = -10, n <= 10, n = n + 1) {
36
+
let numSpaces = Math.abs(n)
37
+
let numStars = 21 - 2 * numSpaces
38
+
println(" " * numSpaces + "*" * numStars)
39
+
}
40
+
}
41
+
42
+
```
43
+
44
+
{% endraw %}
45
+
46
+
Baklava in [Golo](https://sampleprograms.io/languages/golo) was written by:
47
+
48
+
- rzuckerm
49
+
50
+
If you see anything you'd like to change or update, [please consider contributing](https://github.com/TheRenegadeCoder/sample-programs).
51
+
52
+
## How to Implement the Solution
53
+
54
+
No 'How to Implement the Solution' section available. [Please consider contributing](https://github.com/TheRenegadeCoder/sample-programs-website).
55
+
56
+
## How to Run the Solution
57
+
58
+
No 'How to Run the Solution' section available. [Please consider contributing](https://github.com/TheRenegadeCoder/sample-programs-website).
0 commit comments