Created
June 14, 2017 14:53
-
-
Save sat0b/5516bb9d675963a96a2c6c9f38793f98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fn main() { | |
| let mut xs = vec![]; | |
| for i in 1..100 { | |
| xs.push(i); | |
| } | |
| println!("Vector: {:?}", xs); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment