1 2 3 4 5 6 7 8 9 10
#module consumer primitive consumer(in<u32> 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"); }