You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
198 B
Plaintext

node m(x:int) returns (y:int)
let
y = 0 fby x
tel
node f(x,y:int;c1,c2:bool) returns (o1,o2:int)
var r:bool;
let
r = true;
reset
o1 = m(x when c1);
o2 = y
every (true when c2)
tel