1 2use system_memory::{available, total}; 3 4fn main() { 5 println!("Currently available: {} bytes\nTotal: {} bytes", available(), total()); 6}