blob: f755d37e9ca2a59afed7c8d252752bf194136629 (
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 {
print_u64 1234;
};
|