Terminal control/Cursor positioning: Difference between revisions

(→‎{{header|Commodore BASIC}}: Added solution for Commodore BASIC 3.5.)
Line 226:
<syntaxhighlight lang="locobasic"> 10 LOCATE 3,6
20 PRINT "Hello"</syntaxhighlight>
 
==={{header|Nascom BASIC}}===
Line 16 is at the top of the screen and is not scrolled. Line 1 is the next line down, and line 15 is at the bottom.
{{works with|Nascom ROM BASIC|4.7}}
<syntaxhighlight lang="basic">
10 SCREEN 3,5:PRINT "Hello"
</syntaxhighlight>
 
==={{header|NS-HUBASIC}}===
511

edits