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 1524 articles written by 284 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 1526 articles written by 284 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
+13-6Lines changed: 13 additions & 6 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: 2025-10-26
4
+
last-modified: 2025-10-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 156 languages, of which 155 are tested, 1 is untestable, and 1330 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 157 languages, of which 156 are tested, 1 is untestable, and 1331 code snippets.
10
10
11
11
## Language Breakdown
12
12
@@ -18,7 +18,7 @@ Here are the percentages for each language in the collection:
Welcome to the [Hello World](https://sampleprograms.io/projects/hello-world) in [Cython](https://sampleprograms.io/languages/cython) 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
+
```cython
32
+
from libc.stdio cimport printf
33
+
34
+
35
+
cdef main():
36
+
printf(b"%s\n", b"Hello, World!")
37
+
38
+
39
+
if __name__ == "__main__":
40
+
main()
41
+
42
+
```
43
+
44
+
{% endraw %}
45
+
46
+
Hello World in [Cython](https://sampleprograms.io/languages/cython) 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