feat: add goblin

This commit is contained in:
2021-06-12 18:33:24 +08:00
parent 85714fd86d
commit 7331163c2b
2 changed files with 12 additions and 0 deletions

9
__bin/goblin/Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "goblin"
version = "0.1.0"
authors = ["Hatter Jiang@Pixelbook <jht5945@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
__bin/goblin/src/main.rs Normal file
View File

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