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
[...]