REM -------------------------------------------------------------------- REM input1.bas REM REM CIS 120/121 Lecture Notes example: Chipmunk BASIC interpreter REM Mike Huffman REM Portland Community College, Computer Information Systems REM REM Last update: 08 MAY 2002 REM -------------------------------------------------------------------- REM Chipmunk BASIC does not have a CLS command so we have to REM use the command shell to clear the screen SYS( "command.com /c cls" ) INPUT "Enter your name: "; name$ REM get user name (Chipmunk BASIC) PRINT "Hello "; name$; ", welcome to CIS 120!" REM say hello EXIT REM return to operating system