To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
lwc$ EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
lwc$ Example
10 CLEAR SCREEN
20 Test$="HELLO"
30 PRINT Test$;" is in all caps."
40 Test$=LWC$(Test$)
50 PRINT "LCW$ turns them all lower case: ";Test$
60 END