Update Ch15

This commit is contained in:
Unisko PENG
2023-05-10 17:16:23 +08:00
parent c4e4f71b3a
commit 66e54bd19d
3 changed files with 6 additions and 7 deletions

View File

@@ -13,5 +13,5 @@ fn main() {
let b = Cons(3, Rc::clone(&a));
let c = Cons(4, Rc::clone(&a));
println! ("b 为: {:?}\nc 为: {:?}", b, c);
println! ("b 为: {:?}\nc 为:{:?}", b, c);
}