未验证 提交 4d40a09e 编写于 作者: 王下邀月熊-WxChevalier's avatar 王下邀月熊-WxChevalier 提交者: GitHub

Update Rust-CheatSheet.md

上级 0041bd5d
......@@ -2,6 +2,10 @@
# Rust 语法速览、实践技巧与开源工具清单
# 语法基础
# 表达式与控制流
```rs
let v = vec![1, 2, 3, 4, 5]; // v: Vec<i32>
......@@ -12,4 +16,13 @@ let v = vec![1, 2, 3, 4, 5];
println!("The third element of v is {}", v[2]);
```
# 基本数据类型
# 集合类型
# Vector
![](https://parg.co/U8w)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册