diff --git a/testdata/basic-modules/producer.pdl b/testdata/basic-modules/producer.pdl new file mode 100644 index 0000000000000000000000000000000000000000..d6ddac2d2c79cb98ca95a9768ceb67f1fd551450 --- /dev/null +++ b/testdata/basic-modules/producer.pdl @@ -0,0 +1,11 @@ +#module producer + +primitive producer(out output) { + print("P: Going to send a value"); + sync { + print("P: Going to send a value!"); + put(output, 1337); + print("P: I just sent a value!"); + } + print("P: I am exiting"); +} \ No newline at end of file