We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d123f commit eba4951Copy full SHA for eba4951
1 file changed
archive/r/rexx/fizz-buzz.rexx
@@ -0,0 +1,10 @@
1
+do i = 1 to 100
2
+ if i // 15 == 0 then
3
+ say "FizzBuzz"
4
+ else if i // 3 == 0 then
5
+ say "Fizz"
6
+ else if i // 5 == 0 then
7
+ say "Buzz"
8
+ else
9
+ say i
10
+end
0 commit comments