Files @ b33d1be6d118
Branch filter:

Location: CSY/reowolf/testdata/basic-modules/producer.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 producer

comp producer(out<u32> output) {
    sync {
        print("P: Going to send a value!");
        put(output, 1337);
        print("P: I just sent a value!");
    }
    print("P: I am exiting");
}