Just wondering, did anyone else learn this style BASIC when they first started programming?

Code:
AUTO
10 REM program to enter a word
20 REM coded by Pete
30 PRINT "Enter a word: "
40 INPUT A$
50 ENDPROC
60 END
Its the first language I learnt and it got me into programming.