rename 'temp' variable

This commit is contained in:
Paul 2025-02-16 18:45:17 +01:00
parent f1ca5f3fdd
commit 93552a148f

View File

@ -9,6 +9,6 @@ use temp::*;
//} //}
fn main() { fn main() {
let temp = get_temp_r(); let temperature = get_temp_r();
println!("{}", temp); println!("{}", temperature);
} }