term size for platform
Returns a record containing the number of columns (width) and rows (height) of the terminal.
Signature
> term size {flags}
Input/output types:
| input | output |
|---|---|
| nothing | record<columns: int, rows: int> |
Examples
Return the columns (width) and rows (height) of the terminal
> term sizeReturn the columns (width) of the terminal
> (term size).columnsReturn the rows (height) of the terminal
> (term size).rows