mLite is a programming language created in 2014 by Nils M Holm.
#1994on PLDB | 10Years Old |
a lightweight (and slightly odd) inhabitant of the ML universe.
;; create lists of numbers
fun iota (a, b) where (a = b)
= [a]
| (a, b) = a :: iota (a + 1, b)
| a = iota (1, a)