projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
73fe8c175b861425484d4e5395c9189c9d209840
[rust-101.git]
/
src
/
part00.rs
1
// [index](main.html) | previous | [next](part01.html)
2
3
// Rust-101, Part 00
4
// =================
5
6
7
pub fn read_vec() -> Vec<i32> {
8
vec![0,1,2,3,4]
9
}
10
11
12
pub fn part_main() {
13
14
}