You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
184 B
Plaintext

(* Unknown state name *)
node f(x:int) returns (y:int)
let
automaton
state A
do y = 2
until y = 2 then B
state B
do y = 3
until y = 3 then C
end
tel