Terminal control/Cursor positioning: Difference between revisions

m
Regularize non-standard header markup
(add task to aarch64 assembly raspberry pi)
m (Regularize non-standard header markup)
Line 177:
=={{header|BASIC}}==
 
=== {{header|Applesoft BASIC}} ===
<lang Applesoft BASIC> 10 VTAB 6: HTAB 3
20 PRINT "HELLO"</lang>
Line 184:
<lang IS-BASIC>100 PRINT AT 6,3:"Hello"</lang>
 
=== {{header|Locomotive Basic}} ===
<lang locobasic> 10 LOCATE 3,6
20 PRINT "Hello"</lang>
 
=== {{header|ZX Spectrum Basic}} ===
<lang zxbasic> 10 REM The top left corner is at position 0,0
20 REM So we subtract one from the coordinates
30 PRINT AT 5,2 "Hello"</lang>
 
=== {{header|BBC BASIC}} ===
<lang bbcbasic>PRINT TAB(2,5);"Hello"</lang>
 
=== {{header|Commodore BASIC}} ===
<lang basic> 100 print chr$(19) :rem change to lowercase set
110 print chr$(14) :rem go to position 1,1
10,327

edits