Move hello stuff to hello/

This commit is contained in:
Eryn Wells 2016-02-23 23:08:01 -08:00
parent 5bd3729c97
commit 0115c6ba2a
2 changed files with 0 additions and 0 deletions

6
hello/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "hello"
version = "0.1.0"
authors = ["Eryn Wells <eryn@erynwells.me>"]
[dependencies]

8
hello/src/main.rs Normal file
View file

@ -0,0 +1,8 @@
fn main() {
println!("Hello, world!");
let v = vec![1, 2, 3];
for i in v {
println!("{}", i);
}
}