aboutsummaryrefslogtreecommitdiff
path: root/code/main.felan
blob: 34568871264d86e5fc6cf1aa7dcdf15591a02b4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// @import("basic.felan");

f :: (comptime t:type,a:t) -> t {
  return a;
};

main :: () -> void {
  b:u8 = 2;
  f(u8,b);
  f(u8,b);
};