RyuGod
Programming Language Collector
Hello, World!
examples
Colors
Fibonacci
FizzBuzz
1
2
3
4
5
6
7
8
9
10
11
12
for i = 1 to 101 then
    if i%5 == 0 and i%3 == 0 then
       writeln("FizzBuzz")
    elif i%3 == 0 then
       writeln("Fizz")
    elif i%5 == 0 then
       writeln("Buzz")
    elif i%5 != 0 and i%3 != 0 then
       writeln(i)
    end
end
Enter to Rename, <Shift>+Enter to Preview
TerminalInput valueWebOutput
W