mirror of
https://github.com/KarolS/millfork.git
synced 2024-12-23 08:29:35 +00:00
11 lines
255 B
Plaintext
11 lines
255 B
Plaintext
|
// compile with
|
||
|
// java -jar millfork.jar -I ${PATH}/include -t ${platform} ${PATH}/examples/hello_world/hello_world.mfk
|
||
|
|
||
|
import stdio
|
||
|
|
||
|
array hello_world = "hello world" petscii
|
||
|
|
||
|
void main(){
|
||
|
putstr(hello_world, hello_world.length)
|
||
|
while(true){}
|
||
|
}
|