lama_byterun/regression/test040.expr
2019-03-07 19:06:04 +03:00

15 lines
No EOL
152 B
Text

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)