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

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

main :: () -> void {
  a :: u8;
  f(a);
};