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