heptagon/test/good/side_effet.ept
2011-05-26 15:56:59 +02:00

11 lines
187 B
Plaintext

node hello() returns (b:bool)
var tmp : bool;
let
tmp = (*printf("hello")*) true;
automaton
state A var ttmp :bool; do
b = true;
ttmp = (*printf("hello")*) true;
end;
tel