Files

11 lines
256 B
Plaintext
Raw Permalink Normal View History

2026-07-05 18:39:20 +03:00
#!/usr/bin/env clyx
2026-07-06 12:56:48 +03:00
_start [
2026-07-05 18:39:20 +03:00
for [ 1 101 range ] [
1 # tracking flag
swap # the index is on top
dup 3 mod 0= if [ "Fizz" puts swap drop 0 swap ] [ ]
dup 5 mod 0= if [ "Buzz" puts swap drop 0 swap ] [ ]
swap if [ . ] [ drop cr ]
]
]