050 PRINT “Program By: Brian Benjamin”

100 PRINT “You are Tom at Miller Crossing where”
101 PRINT “You must decide weather or not to kill Bernie”
102 PRINT “PLEASE ANSWER EITHER yes OR no TO THE QUESTIONS!”

200 PRINT “WILL YOU KILL BERNIE?”
210 INPUT murder$

300 PRINT “CAN YOU OUTSMART CASPAR?”
310 INPUT Smart$

400 IF murder$= “yes” and Smart$= “yes” then GOTO 500
410 IF murder$= “yes” and Smart$= “no” then GOTO 600
420 If murder$= “no” and Smart$= “no” then GOTO 700
430 IF murder$= “no” and Smart$= “yes” then GOTO 800
440 PRINT “Answer with either YES or NO!”
450 GOTO 200
500 PRINT “Well…You killed a man, you lost Verna and now Caspar is working for you, but was it worth it?”
510 GOTO 900

600 PRINT “You were killed for trying to outsmart Caspar”
610 GOTO 900

700 PRINT “You let Bernie go but Caspar caught you and killed you!”
710 GOTO 900

800 PRINT “You proved that you were a good person at heart and you were able yo get Verna.”
810 GOTO 900

900 END