Skip to content

Commit

Permalink
Create fizzbuzz.nl
Browse files Browse the repository at this point in the history
  • Loading branch information
crnvl committed Jul 16, 2023
1 parent c37fe75 commit a6d0164
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions examples/fizzbuzz.nl
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit a6d0164

Please sign in to comment.