fn add(a: int, b: int) -> int { return __add(a, b); } fn main() -> int { let sum = add(2, 3); print_int(sum); }