Move hello to main.rs; remove lib.rs

This commit is contained in:
Eryn Wells 2016-01-10 08:58:05 -08:00
parent 3f3a5ad444
commit 836f04905a
2 changed files with 3 additions and 3 deletions

View file

@ -1,3 +0,0 @@
#[test]
fn it_works() {
}

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}