Files @ 28005c6bf69b
Branch filter:

Location: CSY/reowolf/testdata/parser/positive/11.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) {
	msg x = null;
	while (x == null) {
		sync {
			if (fires(a))
				x = get(a);
		}
	}
	while (true) {
		sync {
			if (fires(b))
				put(b, x);
		}
	}
}