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