To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
len EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
len Example
10 DIM Name$[20]
20 CLEAR SCREEN
30 Name$="Hello"
40 Len_name=LEN(Name$)
50 PRINT Name$;" is";Len_name;"chars long - using LEN"
60 END