slige/examples/add_fn.slg
2024-12-11 00:22:13 +01:00

10 lines
75 B
Plaintext

fn main() {
add(1, 2)
}
fn add(a: int, b: int) -> int {
+ a b
}