diff options
Diffstat (limited to 'third_party/rust/num_cpus/examples/values.rs')
-rw-r--r-- | third_party/rust/num_cpus/examples/values.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/rust/num_cpus/examples/values.rs b/third_party/rust/num_cpus/examples/values.rs new file mode 100644 index 0000000000..041cfaf1eb --- /dev/null +++ b/third_party/rust/num_cpus/examples/values.rs @@ -0,0 +1,6 @@ +extern crate num_cpus; + +fn main() { + println!("Logical CPUs: {}", num_cpus::get()); + println!("Physical CPUs: {}", num_cpus::get_physical()); +} |