diff --git a/testdata/basic-modules/consumer.pdl b/testdata/basic-modules/consumer.pdl new file mode 100644 index 0000000000000000000000000000000000000000..ccaf12cf83958ecccc7eed5abdd616f83793f013 --- /dev/null +++ b/testdata/basic-modules/consumer.pdl @@ -0,0 +1,10 @@ +#module consumer + +primitive consumer(in 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"); +} \ No newline at end of file