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

t :: (comptime b:u8) -> void {
  print(b);
  print(a);
};

main :: () -> void {
  a := 2u8;
  t(5u8);
};