add script to push docs (will be tested soon)
[rust-101.git] / src / part01.rs
index 2e350bc469fef6afc760ac6a7645747276ee631a..c4c21c5ef0eb6d493f9376a5743a5541321eb723 100644 (file)
@@ -3,8 +3,10 @@
 // Rust-101, Part 00
 // =================
 
-
+pub fn read_vec() -> Vec<i32> {
+    vec![0,1,2,3,4]
+}
 
 pub fn part_main() {
     
-}
\ No newline at end of file
+}