Terminal control/Cursor movement: Difference between revisions

Added Axe
(Added Axe)
Line 92:
return 1
}</lang>
 
=={{header|Axe}}==
Axe does not allow relative movement of the cursor. However, if the current position is known in the X and Y variables, the behavior can be simulated.
<lang axe>Output(X-1,Y)
Output(X+1,Y)
Output(X,Y-1)
Output(X,Y+1)
Output(0,Y)
Output(15,Y)
Output(0,0)
Output(15,7)</lang>
 
=={{header|BASIC}}==
Anonymous user