Files @ 64ef56fc060f
Branch filter:

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

MH
WIP: Work on MPSC queue, pending bugfixes

Works in single threaded fashion, some issues in multithreaded
stresstest require fixing.
#version 100

composite main() {}

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