RosettaCodeData/Task/Terminal-control-Dimensions/Scala/terminal-control-dimensions.scala

8 lines
289 B
Scala
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
/*
First execute the terminal command: 'export COLUMNS LINES'
before running this program for it to work (returned 'null' sizes otherwise).
*/
val (lines, columns) = (System.getenv("LINES"), System.getenv("COLUMNS"))
println(s"Lines = $lines, Columns = $columns")