Skip to content

Commit 6aa8d73

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

File tree

5 files changed

+67
-7
lines changed

5 files changed

+67
-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 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.
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/golo/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
date: 2018-05-24
33
featured-image: programming-languages.jpg
4-
last-modified: 2018-05-24
4+
last-modified: 2025-01-01
55
layout: default
66
tags:
77
- golo
@@ -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 Golo](https://sampleprograms.io/projects/baklava/golo)
3132
- [Hello World in Golo](https://sampleprograms.io/projects/hello-world/golo)

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 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.
1010

1111
## Language Collections by Letter
1212

@@ -141,14 +141,14 @@ The 'F' collection contains 12 languages, of which 12 are tested, and 21 code sn
141141

142142
### G
143143

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.
145145

146146
- [Gerbil](https://sampleprograms.io/languages/gerbil) (2 code snippets)
147147
- [Gluon](https://sampleprograms.io/languages/gluon) (2 code snippets)
148148
- [Gnu Make](https://sampleprograms.io/languages/gnu-make) (6 code snippets)
149149
- [Go](https://sampleprograms.io/languages/go) (29 code snippets)
150150
- [Goby](https://sampleprograms.io/languages/goby) (2 code snippets)
151-
- [Golo](https://sampleprograms.io/languages/golo) (1 code snippet)
151+
- [Golo](https://sampleprograms.io/languages/golo) (2 code snippets)
152152
- [Gosu](https://sampleprograms.io/languages/gosu) (1 code snippet)
153153
- [Grain](https://sampleprograms.io/languages/grain) (1 code snippet)
154154
- [Granule](https://sampleprograms.io/languages/granule) (1 code snippet)
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
authors:
3+
- rzuckerm
4+
date: 2025-01-01
5+
featured-image: baklava-in-every-language.jpg
6+
last-modified: 2025-01-01
7+
layout: default
8+
tags:
9+
- baklava
10+
- golo
11+
title: Baklava in Golo
12+
---
13+
14+
<!--
15+
AUTO-GENERATED -- PLEASE DO NOT EDIT!
16+
17+
Instead, please edit the following:
18+
19+
- sources/programs/baklava/golo/how-to-implement-the-solution.md
20+
- sources/programs/baklava/golo/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 [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).

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 110 articles:
82+
There are 111 articles:
8383

8484
- [Baklava in Ada](https://sampleprograms.io/projects/baklava/ada)
8585
- [Baklava in Algol68](https://sampleprograms.io/projects/baklava/algol68)
@@ -105,6 +105,7 @@ There are 110 articles:
105105
- [Baklava in Gnu Make](https://sampleprograms.io/projects/baklava/gnu-make)
106106
- [Baklava in Go](https://sampleprograms.io/projects/baklava/go)
107107
- [Baklava in Goby](https://sampleprograms.io/projects/baklava/goby)
108+
- [Baklava in Golo](https://sampleprograms.io/projects/baklava/golo)
108109
- [Baklava in Groovy](https://sampleprograms.io/projects/baklava/groovy)
109110
- [Baklava in Hack](https://sampleprograms.io/projects/baklava/hack)
110111
- [Baklava in Haskell](https://sampleprograms.io/projects/baklava/haskell)

0 commit comments

Comments
 (0)