Merge pull request #191 from jganetsk/master

Added push/enter vs eval/apply paper
This commit is contained in:
Jeremy Heiler 2014-10-14 13:26:59 -04:00
commit c6d1bb3625
2 changed files with 1 additions and 0 deletions

View File

@ -2,3 +2,4 @@
* [Tackling the Awkward Squad: monadic input/output, concurrency, exceptions, and foreign-language calls in Haskell](../haskell/tackling-the-awkward-squad-monadic-input-output-concurrency-exceptions-and-foreign-language-calls-in-haskell.pdf) by Simon Peyton Jones
* [Making a Fast Curry: Push/Enter vs. Eval/Apply for Higher-order Languages](../haskell/making-a-fast-curry-push-enter-versus-eval-apply-for-higher-order-languages.pdf) by Simon Marlow and Simon Peyton Jones. A classic... describes well the execution model GHC uses for Haskell, and catches the brilliant authors in a design pivot from original intuition to new conclusions based on empirical data.