usesuper::{Height, Width};/// For WASI so far it will return none
////// For background https://github.com/WebAssembly/WASI/issues/42
pubfnterminal_size()->Option<(Width, Height)>{returnNone;}/// This is inherited from unix and will work only when wasi executed on unix.
////// For background https://github.com/WebAssembly/WASI/issues/42
pubfnmove_cursor_up(n:usize)-> String{format!("\x1B[{}A", n)}