diff --git a/.gitignore b/.gitignore index 088ba6b..4836da8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ # Generated by Cargo # will have compiled files and executables -/target/ +/gemla/target/ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html diff --git a/gemla/Cargo.toml b/gemla/Cargo.toml new file mode 100644 index 0000000..9399fad --- /dev/null +++ b/gemla/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "gemla" +version = "0.1.0" +authors = ["Jacob VanDomelen "] +edition = "2018" + +[dependencies] diff --git a/gemla/src/main.rs b/gemla/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/gemla/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}