summaryrefslogtreecommitdiff
path: root/code/main.felan
blob: 032cfc8199668469798aea05f753f003001cd7e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
byte :: i8;
ubyte :: u8;

short :: i16;
ushort :: u16;

int :: i32;
uint :: u32;

long :: i64;
ulong :: u64;

// short_float :: f16;
float :: f32;
double :: f64;
long_double :: f128;

usize :: u64;

main :: () -> void {
  a := 'a';
  putc a;
  putc '\n';
};