1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-11-08 20:06:24 +00:00
millfork/examples/hello_world/hello_world.mfk

11 lines
247 B
Plaintext
Raw Normal View History

2017-12-06 23:23:30 +00:00
// compile with
// java -jar millfork.jar -I ${PATH}/include -t ${platform} ${PATH}/examples/hello_world/hello_world.mfk
import stdio
2018-07-06 22:58:44 +00:00
array hello_world = "hello world"
2017-12-06 23:23:30 +00:00
void main(){
putstr(hello_world, hello_world.length)
while(true){}
}