heptagon/test/good/side_effet.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

16 lines
230 B
Plaintext

unsafe node hello() returns (b:bool)
let
() = Iostream.printf("hello\n");
automaton
state A do
b = true;
() = Iostream.printf("hello\n");
end;
tel
unsafe node main() returns ()
var b:bool;
let
b = hello();
tel