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
View File
@@ -0,0 +1,2 @@
/target
**/*.rs.bk
+4
View File
@@ -0,0 +1,4 @@
[[package]]
name = "hello_cargo"
version = "0.1.0"
+7
View File
@@ -0,0 +1,7 @@
[package]
name = "hello_cargo"
version = "0.1.0"
authors = ["mollusk <silvernode@gmail.com>"]
edition = "2018"
[dependencies]
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}