vm6502/hello_world.bas

6 lines
90 B
QBasic

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