1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 06:45:16 +00:00
qb64/programs/samples/pete/beatdown/clickme.bas

8 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