RyuGod
Programming Language Collector
Hello, World!
examples
Args
BigInteger
Class
Crypto
ForEaching
Gcd
Math
Recursion
Threads
Timeofday
Types
VectorPrint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# A function that will be recursive
@ recursive(a) {
  ? [ a == 0 ] {
    print("I am done with the recursion now!")
  } ~ {
    print("-- a: " + a)
    recursive( a - 1 )
    print("++ a: " + a)
  }
}
recursive(100)
print("Yey! The interpreter is doing recursion all fine!")
Enter to Rename, <Shift>+Enter to Preview
TerminalInput valueWebOutput
W