mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
6 lines
114 B
QBasic
6 lines
114 B
QBasic
10 INPUT "Enter 3 numbers";A,B,C
|
|
20 PRINT "You entered: ";A;B;C
|
|
30 PRINT "--------------------------"
|
|
40 GOTO 10
|
|
|