We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8ca26a commit e850d81Copy full SHA for e850d81
1 file changed
README.md
@@ -59,7 +59,7 @@ while i-- {
59
or alternativley for those of use who like one-liners.
60
```
61
i = 100
62
-while i-- => if i % 15 == 0 => printl("fizzbuzz") elif i % 5 == 0 => printl("fizz") elif i % 3 == 0 => printl("buzz") else => printl(i)
+while i-- => if i % 15 == 0 => printl(i, "fizzbuzz") elif i % 5 == 0 => printl(i, "fizz") elif i % 3 == 0 => printl(i, "buzz") else => printl(i)
63
64
3. Fibonacci
65
0 commit comments