Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.38 KB

File metadata and controls

43 lines (30 loc) · 1.38 KB

FScheme

Scheme interpreter in F#

See blog series - Blog series moved here to GitHub:

Setup

Everything is written in F# and uses solution (.sln) and project (.fsproj) files compatible with Visual Studio, Xamarin or plain xbuild. I personally have been using plain Vim (with the excellent F# bindings). Here's setup steps for Ubuntu:

Install F#

sudo apt-get update
sudo apt-get install mono-complete
sudo apt-get install fsharp

Pull down the project

git clone http://github.com/AshleyF/FScheme

Build

xbuild FScheme.sln

This produces an executable (FScheme.exe) within bin/

Have fun!