1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-29 04:41:30 +00:00
millfork/examples/msx/encoding_test.mfk
2019-07-31 00:20:18 +02:00

20 lines
484 B
Plaintext

import stdio
void main() {
putstrz("This is an encoding test."z)
new_line()
putstrz("This should be in Spanish: "z)
new_line()
putstrz("¡Hola compañeros~♥!"msx_intlz)
new_line()
putstrz("This should be in Russian: "z)
new_line()
putstrz("Привет друзья~♥!"msx_ruz)
new_line()
putstrz("This should be in Japanese: "z)
new_line()
putstrz("ともだち、おはよう~♥!"msx_jpz)
new_line()
while true {}
}