From ef1bf4921ee4127d461eec03a14c9070d193345c Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Mon, 11 Feb 2019 16:59:01 -0500 Subject: Init. --- hello_world/hello_cargo/.gitignore | 2 ++ hello_world/hello_cargo/Cargo.lock | 4 ++++ hello_world/hello_cargo/Cargo.toml | 7 +++++++ hello_world/hello_cargo/src/main.rs | 3 +++ 4 files changed, 16 insertions(+) create mode 100755 hello_world/hello_cargo/.gitignore create mode 100755 hello_world/hello_cargo/Cargo.lock create mode 100755 hello_world/hello_cargo/Cargo.toml create mode 100755 hello_world/hello_cargo/src/main.rs (limited to 'hello_world/hello_cargo') diff --git a/hello_world/hello_cargo/.gitignore b/hello_world/hello_cargo/.gitignore new file mode 100755 index 0000000..53eaa21 --- /dev/null +++ b/hello_world/hello_cargo/.gitignore @@ -0,0 +1,2 @@ +/target +**/*.rs.bk diff --git a/hello_world/hello_cargo/Cargo.lock b/hello_world/hello_cargo/Cargo.lock new file mode 100755 index 0000000..bd8a836 --- /dev/null +++ b/hello_world/hello_cargo/Cargo.lock @@ -0,0 +1,4 @@ +[[package]] +name = "hello_cargo" +version = "0.1.0" + diff --git a/hello_world/hello_cargo/Cargo.toml b/hello_world/hello_cargo/Cargo.toml new file mode 100755 index 0000000..61d091a --- /dev/null +++ b/hello_world/hello_cargo/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "hello_cargo" +version = "0.1.0" +authors = ["Adam Carpenter "] +edition = "2018" + +[dependencies] diff --git a/hello_world/hello_cargo/src/main.rs b/hello_world/hello_cargo/src/main.rs new file mode 100755 index 0000000..e7a11a9 --- /dev/null +++ b/hello_world/hello_cargo/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} -- cgit v1.2.3