according to the idea of gtm-nayan #144, add println!("Success") for each exercise

This commit is contained in:
sunface
2022-03-05 14:48:43 +08:00
parent 1000a3dc6e
commit 5394cdfcff
21 changed files with 201 additions and 13 deletions

View File

@@ -84,6 +84,8 @@ fn main() {
let s1 = s;
s1.push_str("world")
println!("Success!")
}
```
@@ -98,6 +100,8 @@ fn main() {
*y = 4;
assert_eq!(*x, 5);
println!("Success!")
}
```