heptagon/test/good/ckannot.ept
Gwenal Delaval 891b1f3ffd Added some main in tests
Goal: run as many nodes as possible
2012-07-16 18:49:08 +02:00

13 lines
214 B
Plaintext

node f(x:int;c:bool) returns (y:int)
let
y = (x :: .) when c;
tel
node main() returns (y:int)
var x:int;c:bool;
let
x = 0 fby x + 1;
c = true fby true fby false fby true fby c;
y = merge c (f(x,c)) 0;
tel