heptagon/test/good/t18.ept

17 lines
250 B
Plaintext
Raw Normal View History

2010-06-21 12:11:06 +02:00
node j(x, v_33: bool) returns (o: int)
let
automaton
state I
do o = 1
until (o = 2) then J
state J
do o = 2
until v_33 then I
end
tel
2012-07-18 16:54:44 +02:00
node main() returns (o:int)
let
o = j(true,true)
tel