Files @ 28005c6bf69b
Branch filter:

Location: CSY/reowolf/testdata/parser/positive/12.pdl - annotation

Max Henger
Merge branch 'feat-select-statement' into 'master'

feat: select statement

See merge request nl-cwi-csy/reowolf!1
#version 100

primitive main(in a, out b) {
	int x = 0;
	int y = 0;
	x += y + 5;
	y %= x -= 3;
	x *= x * (x *= 5);
	while (true) {
		sync {
			assert fires(a) == fires(b);
		}
	}
}