cargo init

This commit is contained in:
MeexReay 2025-01-07 03:35:59 +03:00
parent 59564bc7c6
commit 036df62ed0
2 changed files with 9 additions and 0 deletions

6
Cargo.toml Normal file
View File

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

3
src/main.rs Normal file
View File

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