RyuGod
Programming Language Collector
Hello, World!
examples
Arrays
ConditionsAndLoops
Enum
Exceptions
Factorial
Functions
InsertionSort
List
Switch
Types
1
2
3
4
5
6
7
8
9
10
11
12
13
a := 1
if a = 0
    println('zero')
elif a = 1
    println('one')
else
    println('many')
    
# prints 1 to 4
for i := range(0 10)
    break i = 5
    println(i)
Enter to Rename, <Shift>+Enter to Preview
TerminalInput valueWebOutput
W