mirror of
https://github.com/vlang/v.git
synced 2025-09-16 16:02:29 +03:00
6 lines
169 B
V
6 lines
169 B
V
module term
|
|
|
|
pub fn get_terminal_size() (int, int) {
|
|
// TODO: find a way to get proper width&height of the terminal on a Javascript environment
|
|
return 80, 25
|
|
}
|