Attention des changements sont bientôt à prévoir sur l'instance gitea d'Aurore :
node count() returns (o : int)
let
o = 0 fby (o + 1);
tel
node f() returns(x,y : bool)
(x,y) = (true,false)
node main() returns (c,c1 : bool)
automaton
state One
do (c,c1) = f()
until count() = 5 then Two
state Two
until count() = 3 then One
end