'----------------------------------------------------------------------- ' INPUT2.BAS ' ' CIS 120 Lecture Notes example ' Mike Huffman ' Portland Community College, Computer Information Systems ' CIS 120 WINTER TERM 2001 ' ' Last update: 12 FEB 2001 '----------------------------------------------------------------------- CLS ' clear the screen INPUT "What is your name"; name$ ' prompt is a question INPUT "What is your name? ", name$ ' so is this one