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