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

f :: (comptime t:type,a:t) -> t {
  putc a+'0';
  return a;
};

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