Attention des changements sont bientôt à prévoir sur l'instance gitea d'Aurore :
node count(c : int; r : bool) returns (res : int)
let
res = c fby (if r then 0 else res + c);
tel
node fourth() returns (res : bool)
var tmp : int;
tmp = 0 fby (if res then 0 else tmp + 1);
res = tmp = 0;
node foo() returns (res : int)
res = 0 fby (3 + res);
(* Unary operators *)
node main() returns (c : int)
c = count(foo(), fourth());