Merge pull request #390 from zhaoshouhang/master

fix: remove spaces
This commit is contained in:
Sunface
2023-04-09 21:03:54 +08:00
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@ -153,8 +153,8 @@ fn main() {
let (width, precision) = get_format();
let scores = [("sunface", 99.12), ("jack", 60.34)];
/* Make it print:
sunface: 99.1
jack: 60.3
sunface: 99.1
jack: 60.3
*/
for (name, score) in scores {
println!("{name}: __");