summaryrefslogtreecommitdiff
path: root/test/main.felan
blob: b453f6ba757060a55e630adccc0d1f0aab918b60 (plain)
1
2
3
4
5
6
7
8
9
10
main :: () -> void {
  test(u64,i64);
};

test :: (from:type, to:type) -> void {
  if from == to
    print_u64 1234;
  else
    print_u64 4321;
};