mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-24 20:23:11 +03:00
8 lines
152 B
Idris
8 lines
152 B
Idris
import System.Term
|
|
|
|
main : IO ()
|
|
main = do
|
|
width <- getTermCols
|
|
height <- getTermLines
|
|
printLn "Success \{show $ width > 0} \{show $ height > 0}"
|