Terminal control/Dimensions: Difference between revisions

Add BaCon
(Add a Common Lisp example using ncurses)
(Add BaCon)
Line 29:
=={{header|Axe}}==
Since Axe currently only supports the TI-83/84, the home screen dimensions are fixed at 16 columns by 8 rows.
 
=={{header|BaCon}}==
BaCon supports functions to retrieve the current number of <code>ROWS</code> and <code>COLUMNS</code>.
 
<lang freebasic>' ANSI terminal dimensions
X = COLUMNS
Y = ROWS
 
PRINT "X,Y: ", X, ",", Y</lang>
 
=={{header|Batch File}}==
Anonymous user