Terminal control/Dimensions: Difference between revisions

(→‎{{header|XPL0}}: Added zkl)
Line 539:
=={{header|zkl}}==
Unix specific solution:
{{trans|GO}}
<lang zkl>h,w:=System.popen("stty size","r").readln().split();
println(w," x ",h);</lang>
Anonymous user