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.
heptagon/test/bad/t10-initialization.ept

13 lines
223 B
Plaintext

node toto() returns (o : int)
var last x : int; y,z : int;
let
y = 0;
automaton
state S1
do x = pre y; z = 0 -> x until true then S2
state S2
do x = last x; z = x until false then S1
end;
o = z;
tel