1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-09-14 07:54:29 +00:00
millfork/examples/hello_world/hello_world.mfk

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){}
}