1
0
mirror of https://github.com/makarcz/vm6502.git synced 2024-06-08 05:29:35 +00:00
vm6502/hello_world.bas
Marek Karcz 32f2b2d12c Version 2.0
New features. Bug fixes.
2016-03-14 00:28:53 -04:00

6 lines
92 B
QBasic

10 LET A=0
20 PR A;") HELLO WORLD FROM MKHBC!"
30 LET A=A+1
40 IF A>100 THEN END
50 GOTO 20