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:
@@ -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(' ')
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user