mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 11:51:49 +09:00
13 lines
201 B
Plaintext
13 lines
201 B
Plaintext
10 GOSUB PRINTHELLO
|
|
20 GOSUB PRINTHAI
|
|
30 GOSUB PRINTBYE
|
|
40 END
|
|
100 LABEL PRINTHELLO
|
|
110 PRINT "HELLO"
|
|
120 RETURN
|
|
200 LABEL PRINTHAI
|
|
210 PRINT "HAI"
|
|
220 RETURN
|
|
230 PRINT "BYE":LABEL PRINTBYE
|
|
240 RETURN
|