Files @ b33d1be6d118
Branch filter:

Location: CSY/reowolf/testdata/basic-modules/consumer.pdl

Max Henger
Merge branch 'fix-compiler-bin-2' into 'master'

fix: add support for log level to bin-compiler

See merge request nl-cwi-csy/reowolf!10
#module consumer

comp consumer(in<u32> input) {
    sync {
        print("C: going to receive a value");
        auto v = get(input);
        print("C: I have received a value");
    }
    print("C: I am now exiting");
}