1
0
mirror of https://github.com/makarcz/vm6502.git synced 2024-06-01 20:41:32 +00:00
vm6502/hello_world.bas

6 lines
92 B
QBasic
Raw Normal View History

2016-03-14 04:28:53 +00:00
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