Files @ e4a68057bfbe
Branch filter:

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

Christopher Esterhuyse
waker impl for setup phase connect. TODO test on Linux
#version 100

composite main() {}

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