pos Example
10 CLEAR SCREEN
20 Name$="Hello"
30 PRINT "Using the string ";Name$
40 PRINT "The position where 'll' is located is"
50 PRINT POS(Name$,"ll")
60 END