heptagon/test/good/fbyfby2.ept
Gwenal Delaval 87f359a6fd Added main to several tests
Added main to tests
Added dependency statics -> statics2 in scripts
2012-07-17 17:57:04 +02:00

12 lines
132 B
Plaintext

node f() returns (o:bool)
var x:bool;
let
o = x;
x = true fby false fby x;
tel
node main() returns (o:bool)
let
o = f();
tel