Go to file
2025-05-22 12:44:06 +00:00
main.py Automatic push from FunctionsAPI 2025-05-22 12:44:06 +00:00
README.md Automatic push from FunctionsAPI 2025-05-22 12:44:06 +00:00
requirements.txt Automatic push from FunctionsAPI 2025-05-22 12:44:06 +00:00

python hello-world

fn add(a: i32, b: i32) -> i32 { a + b }

fn main() { let result = add(5, 3); println!("The sum is: {}", result); }