rustible/examples/facts.rs
2023-10-05 17:58:41 +02:00

7 lines
139 B
Rust

use rustible::Facts;
fn main() {
let facts = Facts::new();
println!("rustible running system: {}", facts.os.family().as_str());
}