Blog articles/EDSLs
From HaskellWiki
< Blog articles(Difference between revisions)
(→Code generation) |
(fixed dead links) |
||
| (12 intermediate revisions not shown.) | |||
| Line 1: | Line 1: | ||
| + | '''E'''mbedded '''D'''omain '''S'''pecific '''L'''anguages | ||
| + | |||
== 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/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] | ||
| + | * [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 == | ||
| + | |||
| + | * [http://blog.moertel.com/articles/2005/03/25/writing-a-simple-ruby-evaluator-in-haskell Writing a simple Ruby evaluator in Haskell] | ||
| + | * [http://lstephen.wordpress.com/2007/07/23/completing-the-spike/ Implementing SmallTalk in Haskell] | ||
| + | * [http://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours Write Yourself a Scheme in 48 hours] | ||
| + | * [http://www.iis.sinica.edu.tw/~scm/?p=42 Deriving a Virtual Machine] | ||
== Code generation == | == Code generation == | ||
| Line 9: | Line 24: | ||
** [http://augustss.blogspot.com/2007/06/simple-compiler-in-my-last-post-i.html Compiling a DSL to x86 assembly] | ** [http://augustss.blogspot.com/2007/06/simple-compiler-in-my-last-post-i.html Compiling a DSL to x86 assembly] | ||
** [http://augustss.blogspot.com/2007/06/disassembly-harpy-package-also-contains.html Disassembling x86] | ** [http://augustss.blogspot.com/2007/06/disassembly-harpy-package-also-contains.html Disassembling x86] | ||
| + | ** [http://augustss.blogspot.com/2007/06/generating-more-code-with-harpy-after.html Generating more code with Harpy] | ||
| + | |||
| + | == Further reading == | ||
| + | |||
| + | * [http://haskell.org/haskellwiki/Research_papers/Domain_specific_languages#Domain_specific_languages Research papers on domain specific languages in Haskell] | ||
[[Category:Tutorials]] | [[Category:Tutorials]] | ||
Current revision
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:
