Files @ 2f9c47c50e68
Branch filter:

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

MH
Remove some debugging printing
#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");
}