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

12 lines
170 B
Plaintext

node f(x:bool) returns (y:bool)
let
y = x when x
tel
node main() returns (y:bool)
var c:bool;
let
c = true fby true fby false fby c;
y = merge c (f(c)) false;
tel