Files @ a9fb2e3e41d9
Branch filter:

Location: CSY/reowolf/testdata/eval/positive/2.pdl

Christopher Esterhuyse
added interop header file and test programs. Testing on linux TODO
#version 100

composite main() {}

int test() {
	int x = 5;
	if (x < 5) {
	    x = --x;
	}
	x++;
	return x;
}