Return expression eliminated

This commit is contained in:
Dmitry Boulytchev 2021-01-31 19:11:03 +03:00
parent 7eb3e223b8
commit 297139c72a
114 changed files with 37 additions and 1018 deletions

View file

@ -1,12 +1,12 @@
fun hd (l) {
case l of
h : _ -> return h
h : _ -> h
esac
}
fun tl (l) {
case l of
_ : t -> return t
_ : t -> t
esac
}