aboutsummaryrefslogtreecommitdiff
path: root/code/lib/types.felan
blob: 8c0cbf1dd18d6c8234bca6ca2700ef08af400388 (plain)
1
2
3
4
5
6
7
8
string :: []u8;

array :: (comptime size:u64, comptime t:type) -> type {
  return struct {
    ptr : t;
    size : i32 : size;
  };
};