Init commit

This commit is contained in:
2019-02-05 07:08:31 -07:00
commit ad9ebb8920
22 changed files with 329 additions and 0 deletions

2
hello_cargo/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/target
**/*.rs.bk

4
hello_cargo/Cargo.lock generated Normal file
View File

@@ -0,0 +1,4 @@
[[package]]
name = "hello_cargo"
version = "0.1.0"

7
hello_cargo/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "hello_cargo"
version = "0.1.0"
authors = ["mollusk <silvernode@gmail.com>"]
edition = "2018"
[dependencies]

3
hello_cargo/src/main.rs Normal file
View File

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