Initial Rust project

FossilOrigin-Name: 1c761b9f057b38aec45c0cfe6fa6b45175de5463b91c159535216669689b77e8
This commit is contained in:
Valentin Popov 2024-05-31 08:24:15 +00:00
parent da49ec9b32
commit 804454678d
2 changed files with 9 additions and 0 deletions

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "wecli"
version = "0.1.0"
edition = "2021"
[dependencies]

3
src/main.rs Normal file
View File

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