diff --git a/__bin/goblin/Cargo.toml b/__bin/goblin/Cargo.toml new file mode 100644 index 0000000..6e63543 --- /dev/null +++ b/__bin/goblin/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "goblin" +version = "0.1.0" +authors = ["Hatter Jiang@Pixelbook "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/__bin/goblin/src/main.rs b/__bin/goblin/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/__bin/goblin/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}