33, 16
GWBASIC, on DOS 3.3 on my dad's new 80286 as a teen in high school. I still remember the lights going on when it twigged how to write a basic event flow, i.e. (I've forgotten the syntax though):
10 PRINT ">"
20 getinput
30 IF input = "GO NORTH" THEN GOTO 100
40 IF input = "GO SOUTH" THEN GOTO 200
.. etc.
50 IF input = "QUIT" THEN GOTO 70
60 GOTO 10
70 EXIT
..
We all had to start somewhere...
