Skip to content

Commit cef5225

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

File tree

5 files changed

+63
-7
lines changed

5 files changed

+63
-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 1183 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 1184 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/gosu/index.md

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

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 992 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 993 code snippets.
1010

1111
## Language Collections by Letter
1212

@@ -141,15 +141,15 @@ 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 55 code snippets.
144+
The 'G' collection contains 11 languages, of which 11 are tested, and 56 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)
151151
- [Golo](https://sampleprograms.io/languages/golo) (2 code snippets)
152-
- [Gosu](https://sampleprograms.io/languages/gosu) (1 code snippet)
152+
- [Gosu](https://sampleprograms.io/languages/gosu) (2 code snippets)
153153
- [Grain](https://sampleprograms.io/languages/grain) (1 code snippet)
154154
- [Granule](https://sampleprograms.io/languages/granule) (1 code snippet)
155155
- [Gravity](https://sampleprograms.io/languages/gravity) (1 code snippet)
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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+
- gosu
11+
title: Baklava in Gosu
12+
---
13+
14+
<!--
15+
AUTO-GENERATED -- PLEASE DO NOT EDIT!
16+
17+
Instead, please edit the following:
18+
19+
- sources/programs/baklava/gosu/how-to-implement-the-solution.md
20+
- sources/programs/baklava/gosu/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 [Gosu](https://sampleprograms.io/languages/gosu) 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+
```gosu
32+
for ( n in -10..10) {
33+
var numSpaces = Math.abs(n)
34+
var numStars = 21 - 2 * numSpaces
35+
print(" ".repeat(numSpaces) + "*".repeat(numStars))
36+
}
37+
38+
```
39+
40+
{% endraw %}
41+
42+
Baklava in [Gosu](https://sampleprograms.io/languages/gosu) was written by:
43+
44+
- rzuckerm
45+
46+
If you see anything you'd like to change or update, [please consider contributing](https://github.com/TheRenegadeCoder/sample-programs).
47+
48+
## How to Implement the Solution
49+
50+
No 'How to Implement the Solution' section available. [Please consider contributing](https://github.com/TheRenegadeCoder/sample-programs-website).
51+
52+
## How to Run the Solution
53+
54+
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 111 articles:
82+
There are 112 articles:
8383

8484
- [Baklava in Ada](https://sampleprograms.io/projects/baklava/ada)
8585
- [Baklava in Algol68](https://sampleprograms.io/projects/baklava/algol68)
@@ -106,6 +106,7 @@ There are 111 articles:
106106
- [Baklava in Go](https://sampleprograms.io/projects/baklava/go)
107107
- [Baklava in Goby](https://sampleprograms.io/projects/baklava/goby)
108108
- [Baklava in Golo](https://sampleprograms.io/projects/baklava/golo)
109+
- [Baklava in Gosu](https://sampleprograms.io/projects/baklava/gosu)
109110
- [Baklava in Groovy](https://sampleprograms.io/projects/baklava/groovy)
110111
- [Baklava in Hack](https://sampleprograms.io/projects/baklava/hack)
111112
- [Baklava in Haskell](https://sampleprograms.io/projects/baklava/haskell)

0 commit comments

Comments
 (0)