diff options
author | valentineus <valentin@popov.link> | 2024-05-31 11:24:15 +0300 |
---|---|---|
committer | valentineus <valentin@popov.link> | 2024-05-31 11:24:15 +0300 |
commit | 804454678d701fa5bd2ee5c1ec638454ae6d4871 (patch) | |
tree | 898360dd8e069a0b52435678b5e1fa2be432cdb8 | |
parent | da49ec9b32a9eac12d4b203d775368a051662f17 (diff) | |
download | wecli-804454678d701fa5bd2ee5c1ec638454ae6d4871.tar.xz wecli-804454678d701fa5bd2ee5c1ec638454ae6d4871.zip |
Initial Rust project
FossilOrigin-Name: 1c761b9f057b38aec45c0cfe6fa6b45175de5463b91c159535216669689b77e8
-rw-r--r-- | Cargo.toml | 6 | ||||
-rw-r--r-- | src/main.rs | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..dc67c41 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "wecli" +version = "0.1.0" +edition = "2021" + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |