Files @ c2e3074a729b
Branch filter:

Location: CSY/reowolf/testdata/basic-modules/main.pdl - annotation

mh
Implement byte string, TCP socket, HTTP request test. Fix escape character parsing. Refactor component code
1
2
3
4
5
6
7
8
import consumer as c;
import producer::producer;

composite main() {
    channel output -> input;
    new c::consumer(input);
    new producer(output);
}