Blog articles/EDSLs
From HaskellWiki
(Difference between revisions)
(→Interpreters) |
|||
| Line 9: | Line 9: | ||
* [http://augustss.blogspot.com/2007/08/quicksort-in-haskell-quicksort-is.html Real Quicksort in Haskell] | * [http://augustss.blogspot.com/2007/08/quicksort-in-haskell-quicksort-is.html Real Quicksort in Haskell] | ||
* [http://sigfpe.blogspot.com/2007/11/small-combinatorial-library.html A Small Combinatorial Library] | * [http://sigfpe.blogspot.com/2007/11/small-combinatorial-library.html A Small Combinatorial Library] | ||
| + | * [http://www.kennknowles.com/blog/2008/04/16/drawing-fractals-in-haskell-with-a-cursor-graphics-dsel-and-a-cute-list-representation/ Drawing fractals in Haskell with a cursor graphics DSEL and a cute list representation] | ||
== Interpreters == | == Interpreters == | ||
Revision as of 21:45, 16 April 2008
Embedded Domain Specific Languages
Contents |
1 Domain specific languages
- Representing DSL expressions in Haskell
- Embedding a larger language into Haskell with overloading
- Programming in C, ummm, Haskell
- What about arrays?
- Real Quicksort in Haskell
- A Small Combinatorial Library
- Drawing fractals in Haskell with a cursor graphics DSEL and a cute list representation
2 Interpreters
- Writing a simple Ruby evaluator in Haskell
- Implementing SmallTalk in Haskell
- Write Yourself a Scheme in 48 hours
- Deriving a Virtual Machine
3 Code generation
- Writing x86 code generators with Harpy:
