To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
width EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
width Example
10 CLEAR SCREEN
20 PRINT "Hello world, I am the computer." !Prints sentence across screen
30 PRINTER IS CRT;WIDTH 8 !Changes text width of screen
40 PRINT "Hello world, I am the computer." !Prints sentence using new text width
50 END