1
0
mirror of https://github.com/KarolS/millfork.git synced 2026-04-26 10:20:51 +00:00

Add support for Japanese C64

This commit is contained in:
Karol Stasiak
2019-07-30 15:30:18 +02:00
parent d3b72f5b42
commit d9f8b5acc4
4 changed files with 41 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
import stdio
void main() {
ensure_mixedcase()
byte i
for i,1,to,100 {
if i %% 15 == 0 {
putstrz("フィズバズ"z)
} else if i %% 3 == 0 {
putstrz("フィズ"z)
} else if i %% 5 == 0 {
putstrz("バズ"z)
} else {
putword(i)
}
putchar(' ')
}
}