RosettaCodeData/Task/Terminal-control-Dimensions/Forth/terminal-control-dimensions.fth
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

9 lines
189 B
Forth

variable term-width
variable term-height
s" gforth" environment? [if]
2drop form ( height width )
[else] \ SwiftForth
get-size ( width height ) swap
[then]
term-width ! term-height !