Results of working through the Write Yourself A Scheme in 48 Hours Haskell tutorial.
-
Install the Haskell Tool Stack
-
Run the REPL
stack build
stack exec haskell-lisp-exe
- Load the "standard library"
Lisp>>> (load "stdlib.scm")
- You've got a Scheme!
Lisp>>> (map (curry + 2) '(1 2 3 4))
- Quit
Lisp>>> quit