Jump to content

Terminal control/Cursor positioning: Difference between revisions

Add BaCon
(Add a Common Lisp example using ncurses)
(Add BaCon)
Line 110:
Since the rows and columns are zero-indexed, we must subtract 1 from both.
<lang axe>Output(2,5,"HELLO")</lang>
 
=={{header|BaCon}}==
<lang freebasic>' Cursor positioning, requires ANSI compliant terminal
GOTOXY 3,6
PRINT "Hello"</lang>
The X Y in <code>GOTOXY</code> is Column Row order.
 
=={{header|BASIC}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.