summaryrefslogtreecommitdiff
path: root/code/main.felan
blob: 7428511a07d80cb71a948965949a7b5a37af7cc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
char :: u8;
short :: i16;
int :: i32;
long :: i64;
float :: f32;
double :: f64;

st :: struct {
  a : int;
  b : double;
};

main :: () -> void {
  a : st = undefined;
};