Haskell Quiz/Bytecode Compiler: Difference between revisions

From HaskellWiki
mNo edit summary
No edit summary
Line 6: Line 6:


==Solutions==
==Solutions==
* [[Haskell Quiz/Bytecode Compiler/Solution Michael Sloan|Michael Sloan]]


* [[Haskell Quiz/Bytecode Compiler/Solution Justin Bailey|Justin Bailey]]
* [[Haskell Quiz/Bytecode Compiler/Solution Justin Bailey|Justin Bailey]]


* A (non-monadic) solution to the parsing and eval part of this quiz is a [http://www.cs.kent.ac.uk/people/staff/sjt/craft2e/Code/Parsing/Parsing.hs case study] in Chapter 17 of [http://www.cs.kent.ac.uk/people/staff/sjt/craft2e The Craft of Functional Programming] by Simon Thompson.
* A (non-monadic) solution to the parsing and eval part of this quiz is a [http://www.cs.kent.ac.uk/people/staff/sjt/craft2e/Code/Parsing/Parsing.hs case study] in Chapter 17 of [http://www.cs.kent.ac.uk/people/staff/sjt/craft2e The Craft of Functional Programming] by Simon Thompson.

Revision as of 05:17, 6 November 2006

The Problem

Create a bytecode compiler as described on the test page. The Ruby solution involves being run by a interpreter written in Ruby - but that wont' work for the Haskell solution. Anyone want to write the interpreter in Haskell to test the solutions? :)

Solutions