6 lines
65 B
QBasic
6 lines
65 B
QBasic
PRINT "What's your name?"
|
|
INPUT $1
|
|
PRINT "Hello " ;
|
|
PRINT $1
|
|
END
|