1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-05-31 18:41:30 +00:00

It's .mfk now, not .ml

This commit is contained in:
Karol Stasiak 2017-12-07 00:37:57 +01:00
parent d134afa213
commit 300dee4319

View File

@ -2,7 +2,7 @@
## Hello world example
Save the following as `hello_world.ml`:
Save the following as `hello_world.mfk`:
```
import stdio
@ -18,7 +18,7 @@ void main(){
Compile is using the following commandline:
```
java millfork.jar hello_world.ml -o hello_world -t c64 -I path_to_millfork\include
java millfork.jar hello_world.mfk -o hello_world -t c64 -I path_to_millfork\include
```
Run the output executable (here using the VICE emulator):