Merge pull request #415 from lostsquirrel/patch-1

remove the mistable semicolon
This commit is contained in:
Sunface
2025-04-25 12:08:10 +08:00
committed by GitHub

View File

@ -63,7 +63,7 @@ fn main() {
}
fn sum(x: i32, y: i32) -> i32 {
x + y;
x + y
}
```