summaryrefslogtreecommitdiff
path: root/simple.nl
blob: c45e2ca89db93c27342efaa9237fe7ff03fe0192 (plain)
1
2
3
4
5
6
7
8
9
type int = i32;
type char = i8;

int g_var;

int main(i32 argc, ptr(ptr(i8)) argv) {
	int i = g_var;
	int a = i + 2;
}