摘要:
vegetation 草木;植被 skyscraper 摩天大楼 Game player 游戏玩家 Mathematics achievement 数学成绩 Take a walk 遛弯; Go for a walk 散步 5k run 五公里跑 marathon 马拉松 First-tier ci 阅读全文
摘要:
/// /// https://kaisery.github.io/trpl-zh-cn/ch04-01-what-is-ownership.html fn main() { let mut s = String::from("hello"); s.push_str(",world!"); prin 阅读全文
摘要:
/// /// https://kaisery.github.io/trpl-zh-cn/ch04-02-references-and-borrowing.html fn main() { let mut s = String::from("hello"); let r1 = &s; //没问题 l 阅读全文