Blog articles/EDSLs
From HaskellWiki
(Difference between revisions)
(→Domain specific languages) |
(→Domain specific languages) |
||
| Line 3: | Line 3: | ||
== Domain specific languages == | == Domain specific languages == | ||
| - | |||
* [http://augustss.blogspot.com/2007/06/representing-dsl-expressions-in-haskell.html Representing DSL expressions in Haskell] | * [http://augustss.blogspot.com/2007/06/representing-dsl-expressions-in-haskell.html Representing DSL expressions in Haskell] | ||
* [http://augustss.blogspot.com/2007/06/massive-overload-in-my-last-post-i-had.html Embedding a larger language into Haskell with overloading] | * [http://augustss.blogspot.com/2007/06/massive-overload-in-my-last-post-i-had.html Embedding a larger language into Haskell with overloading] | ||
| + | * [http://augustss.blogspot.com/2007/08/programming-in-c-ummm-haskell-heres.html Programming in C, ummm, Haskell ] | ||
| + | * [http://augustss.blogspot.com/2007/08/what-about-arrays-after-doing-my-little.html What about arrays?] | ||
| + | * [http://augustss.blogspot.com/2007/08/quicksort-in-haskell-quicksort-is.html Real Quicksort in Haskell] | ||
== Interpreters == | == Interpreters == | ||
Revision as of 16:50, 23 September 2007
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
2 Interpreters
- Writing a simple Ruby evaluator in Haskell
- Implementing SmallTalk in Haskell
- Write Yourself a Scheme in 48 hours
3 Code generation
- Writing x86 code generators with Harpy:
