Goofing with rust

This commit is contained in:
Dan Buch
2016-08-30 22:45:37 -04:00
parent ffbc653075
commit 7e650db47f
4 changed files with 14 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
target/
+4
View File
@@ -0,0 +1,4 @@
[root]
name = "rustfun"
version = "0.1.0"
+6
View File
@@ -0,0 +1,6 @@
[package]
name = "rustfun"
version = "0.1.0"
authors = ["Dan Buch <daniel.buch@gmail.com>"]
[dependencies]
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}