RosettaCodeData/Task/Terminal-control-Dimensions/Forth/terminal-control-dimensions.fth

10 lines
189 B
Forth
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
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 !