heptagon/test/good/autohiera3.ept
Gwenaël Delaval fd4dffef62 Adding tests
2015-09-04 17:33:49 +02:00

18 lines
288 B
Plaintext

node test(r,r1,e:bool) returns (st:int)
let
automaton
state S1 do
st=0;
until r then S2
state S2 do
automaton
state P1 do
st=1;
until r1 then P2
state P2 do
st=2;
end;
until e then S1
end
tel