Check out the
examples
.
Options
Vim mode
Lights
Run
Print 'Enter a stopping point: ' Enter n Loop:i=1 to n If i % 3 == 0 AND i % 5 == 0 Then Print 'FizzBuzz\n' Else If i % 3 == 0 Then Print 'Fizz\n' Else If i % 5 == 0 Then Print 'Buzz\n' Else Print i, '\n' EndIf EndIf EndIf LoopEnd:i
Online Editor
Write and compile code online!
Basics
Factorial
Fizzbuzz
Linear-search
Repeat-lyrics