Files @ 339b493050e2
Branch filter:

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

MH
WIP on tcp listener/socket test
#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");
}