Merge pull request #315 from Tal-Chaim/patch-2

Fixed wrong print.
This commit is contained in:
Sunface
2022-10-11 10:12:30 +08:00
committed by GitHub

View File

@ -15,7 +15,7 @@ fn match_number(n: i32) {
println!("match 6 -> 10")
},
_ => {
println!("match 11 -> +infinite")
println!("match -infinite -> 0 or 11 -> +infinite")
}
}
}