mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
7 lines
106 B
Mojo
7 lines
106 B
Mojo
fn add(a: Int, b: Int) -> Int:
|
|
return a + b
|
|
|
|
fn main():
|
|
let result = add(40, 2)
|
|
print(result)
|