Terminal control/Cursor positioning: Difference between revisions

Content added Content deleted
Line 189: Line 189:
<syntaxhighlight lang="applesoft basic"> 10 VTAB 6: HTAB 3
<syntaxhighlight lang="applesoft basic"> 10 VTAB 6: HTAB 3
20 PRINT "HELLO"</syntaxhighlight>
20 PRINT "HELLO"</syntaxhighlight>

==={{header|ASIC}}===
Rows have the range 0-24, columns have the range 0-79.
<syntaxhighlight lang="basic">
LOCATE 5, 2
PRINT "Hello"
</syntaxhighlight>


==={{header|BaCon}}===
==={{header|BaCon}}===