[][src]Function minus::page_all

pub fn page_all(lines: String)

Outputs static information

. Once called, string passed to this function can never be changed. If you want dynamic information, see async_std_updating and tokio_updating

Example

fn main() {
    let mut output = String::new();
    for i in 1..=30 {
        let _ = writeln!(output, "{}", i);
    }
    minus::page_all(output);
}