Lazy ML is a programming language created in 1980.
#2972on PLDB | 44Years Old |
Lazy ML (LML) is a functional programming language developed in the early 1980s by Lennart Augustsson and Thomas Johnsson at Chalmers University of Technology, prior to Miranda and Haskell. LML is a strongly typed, statically scoped implementation of ML, with lazy evaluation. The key innovation of LML was to demonstrate how to compile a lazy functional language. Read more on Wikipedia...
let rec fact 0 = 1 ||
fact n = n*fact(n-1)