To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
set echo EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
set echo Example
10 PLOTTER IS CRT,"INTERNAL";COLOR MAP
20 CLEAR SCREEN
30 SET ECHO 65,50 !Set the crosshair to the middle of the screen.
40 READ LOCATOR X,Y !Read where the mouse pointer is at.
50 PRINT X,Y
60 END