This commit is contained in:
2022-04-19 22:45:36 +02:00
parent 9ddbc60a3b
commit f496357522
9 changed files with 218 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
[package]
name = "hello_world"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

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