lama_byterun/regression/test059.expr

20 lines
167 B
Text
Raw Normal View History

fun f (l) {
case l of
{} -> skip
| h : tl -> h (); f (tl)
esac
}
fun a () {
write (0)
}
fun b () {
write (1)
}
fun c () {
write (2)
}
f ({a, b, c})