To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
pos EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
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