Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 609 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 609 Bytes

Haskell-Scheme-Compiler

A project to create a R5RS compiler in Haskell. Ultimately want to target LLVM on the backend

Build Instructions

  1. Install stack
    • On mac, you can use homebrew: brew install haskell-stack
  1. Checkout this project and run stack setup followed by stack build in top-level directory.

  2. If all goes well, you're ready to go. Currently the app works takes scheme source code from STDIN.
    Try this command: echo "(+ 2 2)" | stack exec scheme-compiler-exe