summaryrefslogtreecommitdiff
path: root/examples/if.pipa
blob: 2c5578d4b54b252045bcf77d45b25a5551988fd9 (plain)
1
2
3
4
5
6
7
8
9
fn main(): i32 {
  let n: i32 = 42;

  if n > 42 {
    return 42;
  }

  return n;
}