1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-08-07 12:25:40 +00:00
Files
millfork/examples/hello_world/hello_world.mfk
2018-07-28 00:58:20 +02:00

13 lines
297 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"
void main(){
putstr(hello_world, hello_world.length)
putchar(13)
putstrz("hello world again"z)
while(true){}
}