summaryrefslogtreecommitdiff
path: root/test/main.felan
blob: 84cc63859946c68455e7a037865fb1465d5e6332 (plain)
1
2
3
4
5
6
7
8
9
main :: () -> void {
  b := false;
  if b {
    print_u64 1;
  } else {
    print_u64 2;
  }
};