diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-12-28 13:48:07 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-12-28 13:48:07 -0800 |
| commit | a8f9b712274bfdb4483b37ac2b919c429af2f38e (patch) | |
| tree | faa466504e1e41231432c2c1bfff0dcf99fad5bf /src | |
| parent | initial commit (diff) | |
| download | x-a8f9b712274bfdb4483b37ac2b919c429af2f38e.tar.gz | |
be more explicit in the default output
Diffstat (limited to 'src')
| -rw-r--r-- | src/apple_silicon/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apple_silicon/src/main.rs b/src/apple_silicon/src/main.rs index b54c3ec..a1b6ba1 100644 --- a/src/apple_silicon/src/main.rs +++ b/src/apple_silicon/src/main.rs @@ -4,7 +4,7 @@ mod soc; fn main() { let cpu_info = soc::SocInfo::new().unwrap(); println!( - "our CPU is an {}, and we have {} cores, and {} GPU cores", + "our CPU is an {}, and we have {} CPU cores, and {} GPU cores", cpu_info.cpu_brand_name, cpu_info.num_cpu_cores, cpu_info.num_gpu_cores, ); } |
