heptagon/test/good/clocks.ept

12 lines
170 B
Plaintext
Raw Normal View History

2011-11-02 08:43:38 +01:00
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