Files @ 4bf1367cd8a1
Branch filter:

Location: CSY/reowolf/testdata/parser/negative/19.pdl

Christopher Esterhuyse
decluttered global namespace of consts in C FFI. added examples for interop programming
#version 100

primitive main(in a) {
	while (true) {
		synchronous {
			if (fires(a)) {
				return 5;
			} else {
				block(a);
			}
		}
	}
}