fn add(lhs: int, rhs: int) -> int { lhs + rhs } fn main() { let foo = 5; let bar = 7 + foo; if foo == 5 {} else {} let c = add(foo, bar); }