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