1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-01 19:50:17 +00:00
qb64/programs/samples/pete/beatdown/clickme.bas

7 lines
155 B
QBasic

CLS
PRINT "1. English 2. Italian"
INPUT "#", n
IF n = 1 THEN CHAIN "beatdown.bas"
IF n = 2 THEN CHAIN "bdt.bas"
STOP