DIM A$ A$ = COMMAND$ IF A$ = "" THEN PRINT "You did not type anything on the command line." END ' <<< -- Introducing the END statement! END IF A$ = "You typed " & COMMAND$ & " on the command line." PRINT A$
DIM
=
COMMAND$
IF
""
THEN
PRINT
"You did not type anything on the command line."
END
' <<< -- Introducing the END statement!
"You typed "
&
" on the command line."