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

13 lines
297 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)
putchar(13)
putstrz("hello world again"z)
2017-12-06 23:23:30 +00:00
while(true){}
}