lama_byterun/regression/test040.expr
2019-09-29 02:47:07 +03:00

17 lines
No EOL
162 B
Text

local x;
fun f (x) {
case x of
A -> write (1)
| B -> write (2)
| C -> write (3)
| _ -> write (4)
esac
}
x := read ();
f (A);
f (B);
f (C);
f (D)