ramusage 0.1.0

Get the used and total amount of memory
Documentation
1
2
3
4
5
6
7
8
9
10
use std::error::Error;
use ramusage::Info;

fn main() -> Result<(), Box<dyn Error>> {
    let info = Info::read()?;

    println!("{info}");

    Ok(())
}