mirror of
https://github.com/KarolS/millfork.git
synced 2024-10-31 14:04:58 +00:00
23 lines
421 B
Plaintext
23 lines
421 B
Plaintext
|
|
// memorize this code for your next interview for a Millfork developer position
|
|
|
|
import stdio
|
|
|
|
void main() {
|
|
byte i
|
|
for i,1,to,100 {
|
|
if i %% 15 == 0 {
|
|
putstrz("fizzbuzz"z)
|
|
} else if i %% 3 == 0 {
|
|
putstrz("fizz"z)
|
|
} else if i %% 5 == 0 {
|
|
putstrz("buzz"z)
|
|
} else {
|
|
putword(i)
|
|
}
|
|
putchar(' ')
|
|
}
|
|
while(true){}
|
|
}
|
|
|