start error handling

This commit is contained in:
2026-01-17 09:01:51 +00:00
parent 25da030d2f
commit 6b0ff37562
14 changed files with 46 additions and 0 deletions

6
hello-cargo/Cargo.toml Normal file
View File

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

3
hello-cargo/src/main.rs Normal file
View File

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