1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-11-05 00:05:44 +00:00
millfork/examples/hello_world/hello_world.mfk
2018-07-07 00:58:44 +02:00

11 lines
247 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)
while(true){}
}