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

int g_var;

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