diff --git a/examples/fizzbuzz.nl b/examples/fizzbuzz.nl new file mode 100644 index 0000000..980965d --- /dev/null +++ b/examples/fizzbuzz.nl @@ -0,0 +1,11 @@ +v x = 0 +w x < 101 { + p(x) + i x % 3 == 0 { + p("Fizz") + } + i x % 5 == 0 { + p("Buzz") + } + x = x + 1 +} \ No newline at end of file