heptagon/test/good/auto_clock.ept
Gwenaël Delaval db5524df3f Tests addition
2017-05-23 22:10:39 +02:00

11 lines
187 B
Plaintext

node when2(x :int; c :bool) returns (y :int)
let
automaton
state FirstPeriod do
y = x when c;
until true then Cruise
state Cruise do
y = x when c;
end
tel