Files
metabuilder/libraries/mojo/compiler/examples/simple_function.mojo
2026-03-09 22:30:41 +00:00

7 lines
106 B
Mojo

fn add(a: Int, b: Int) -> Int:
return a + b
fn main():
let result = add(40, 2)
print(result)