fix errors

This commit is contained in:
2023-06-01 12:37:20 +02:00
parent e61cdcb662
commit cc4a953382
2 changed files with 5 additions and 5 deletions

View File

@@ -13,9 +13,9 @@ fn main() {
println!("{}", tup.0);
let mut cambiar = (1.1f32, 1);
let mut _cambiar = (1.1f32, 1);
let aesto = (3.14f32, 6);
cambiar = aesto;
_cambiar = aesto;
println!("{}", aesto.0);