Files @ 85980c6df11a
Branch filter:

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

MH
Revised and finished docs on outside-sync errors
#module producer

primitive 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");
}