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

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