Entries Tagged as ‘Old Fashioned Coder’

26 July 2007

Lisp for the Low Level Man: An Introduction to Liskell

So, you want to program Lisp on a slow/old computer? Use Liskell, it’s Haskell and Lisp combined into a new language.
The example given on the home page of Liskell in action is actually pretty interesting:
(define (fact n)

(if (== n 0)
1
[...]