heptagon/test/good/side_effet.ept

11 lines
187 B
Plaintext
Raw Normal View History

2011-05-12 17:40:23 +02:00
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