rustible/examples/facts.rs

7 lines
139 B
Rust
Raw Normal View History

2023-10-05 17:58:41 +02:00
use rustible::Facts;
fn main() {
let facts = Facts::new();
println!("rustible running system: {}", facts.os.family().as_str());
}