diff --git a/testdata/basic-modules/producer.pdl b/testdata/basic-modules/producer.pdl new file mode 100644 index 0000000000000000000000000000000000000000..dc4747d7687a4ed6bb25a62b97d769223a01b657 --- /dev/null +++ b/testdata/basic-modules/producer.pdl @@ -0,0 +1,10 @@ +#module producer + +primitive producer(out output) { + 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