Lazy ML
Lazy ML is a programming language created in 1980. 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...
40Years Old | 20Users | ?Jobs |
- the Lazy ML wikipedia page
- Lazy ML first appeared in 1980
- See also: haskell, ml
- Have a question about Lazy ML not answered here? Email me and let me know how I can help.
Example code from Wikipedia:
let rec fact 0 = 1 || fact n = n*fact(n-1)
Last updated August 9th, 2020