Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 506 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 506 Bytes

Results of working through the Write Yourself A Scheme in 48 Hours Haskell tutorial.

To Run

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