so-un-bot/Ingegneria del Software/0321_16/wrong 2.txt
2022-11-14 14:50:34 +01:00

39 lines
No EOL
345 B
Text

<pre>
connector InputInteger = input Integer;
connector OutputInteger = output Integer;
block Controller
InputInteger x;
OutputInteger Integer w;
...
end Controller;
block Plant
InputInteger u;
OutputInteger y;
...
end Plant;
class System
Controller k;
Plant p;
equation
connect(p.y, k.w);
connect(k.x, p.u);
end System;
</pre>