https://github.com/roguh/scminhs
A Scheme Implementation in Haskell. Followed "Write Yourself a Scheme in 48 Hours."
https://github.com/roguh/scminhs
Last synced: 11 months ago
JSON representation
A Scheme Implementation in Haskell. Followed "Write Yourself a Scheme in 48 Hours."
- Host: GitHub
- URL: https://github.com/roguh/scminhs
- Owner: roguh
- License: bsd-3-clause
- Created: 2015-01-22T16:57:01.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-24T07:48:07.000Z (over 11 years ago)
- Last Synced: 2025-07-11T01:37:51.316Z (11 months ago)
- Language: Haskell
- Homepage:
- Size: 2.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Scheme in Haskell
A Basic Scheme Implementation in Haskell
Followed most of [Write Yourself a Scheme in 48 Hours](http://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours). New crazy monadic code for programming primitives. Also check out the implementation of dynamically typed numbers, for this I used a complicated typeclass instance of Num.