21 lines
490 B
Plaintext
21 lines
490 B
Plaintext
|
BACI System: C-- to PCODE Compiler in C, 11:30 1 Oct 2012
|
||
|
Source file: zad1.cm Mon Dec 10 11:09:29 2018
|
||
|
line pc
|
||
|
1 0 monitor s{
|
||
|
2 0 void a(){
|
||
|
3 1 cout << "A";
|
||
|
4 2 cout << "B";
|
||
|
5 3 }
|
||
|
6 5
|
||
|
7 5 void b(){
|
||
|
8 6 cout << "C";
|
||
|
9 7 cout << "D";
|
||
|
10 8 }
|
||
|
11 10 }
|
||
|
12 11
|
||
|
13 11 void proc1(){ a(); }
|
||
|
14 15 void proc2(){ b(); }
|
||
|
15 19 main(){
|
||
|
16 20 cobegin { proc1(); proc2(); }
|
||
|
17 28 }
|