rust-most/src/main.rs

10 lines
164 B
Rust
Raw Normal View History

2019-12-06 02:01:59 -08:00
#[allow(non_camel_case_types, non_snake_case, dead_code)]
2019-12-05 03:19:41 -08:00
mod ffi;
2019-12-04 01:57:47 -08:00
fn main() {
2019-12-06 02:01:59 -08:00
println!("Printing most usage:");
2019-12-05 03:19:41 -08:00
unsafe {
ffi::most_usage();
}
2019-12-04 01:57:47 -08:00
}