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 main(x : bool) returns (d : bool)
var last c : bool = false;
d = c;
automaton
state One
var last xone : bool = false;
do
state A
do c = xone & x;
xone = true;
until count() = 2 then B
state B
until count() = 3 then A
end
until count() = 5 then Two
state Two
do c = x;
until count() = 3 then One