f11dfd4df3044bbd92dae38c397.../README.md
2025-05-21 13:33:08 +00:00

10 lines
148 B
Markdown

# python hello-world
fn add(a: i32, b: i32) -> i32 {
a + b
}
fn main() {
let result = add(5, 3);
println!("The sum is: {}", result);
}