10 lines
75 B
Plaintext
10 lines
75 B
Plaintext
|
|
|
|
fn main() {
|
|
add(1, 2)
|
|
}
|
|
|
|
fn add(a: int, b: int) -> int {
|
|
+ a b
|
|
}
|