10 INPUT "What is your name: "; N$
20 PRINT " Hello "; N$
30 REM
40 INPUT "Did you start this thread? " ; A$
50 IF (A$ = "Y") OR (A$ = "y") THEN GOTO 70
60 IF (A$ = "N") OR (A$ = "n") THEN GOTO 90
70 PRINT N$ ", you are a fucking idiot!!!!!!"
80 GOTO 70
90 PRINT "Goodbye"
100 END
|