diff --git a/rustfun/.gitignore b/rustfun/.gitignore new file mode 100644 index 0000000..2f7896d --- /dev/null +++ b/rustfun/.gitignore @@ -0,0 +1 @@ +target/ diff --git a/rustfun/Cargo.lock b/rustfun/Cargo.lock new file mode 100644 index 0000000..e95427c --- /dev/null +++ b/rustfun/Cargo.lock @@ -0,0 +1,4 @@ +[root] +name = "rustfun" +version = "0.1.0" + diff --git a/rustfun/Cargo.toml b/rustfun/Cargo.toml new file mode 100644 index 0000000..19277d0 --- /dev/null +++ b/rustfun/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "rustfun" +version = "0.1.0" +authors = ["Dan Buch "] + +[dependencies] diff --git a/rustfun/src/main.rs b/rustfun/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/rustfun/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}