HTBasic Help
×
Menu
Index

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