spacing
This commit is contained in:
parent
26bff70b1f
commit
d0de70eb54
@ -2,7 +2,7 @@
|
||||
fizzbuzz <- x ->
|
||||
if x % 15 = 0 print("fizzbuzz")
|
||||
elif x % 3 = 0 print("fizz")
|
||||
# elif x % 5 = 0 print("buzz")
|
||||
elif x % 5 = 0 print("buzz")
|
||||
else print(x)
|
||||
if x < 100 fizzbuzz(x + 1) ## TODO add looping construct(s)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user