diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2018-03-15 23:29:08 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2018-03-15 23:29:08 -0700 |
commit | 7452d0525ecfc12c11fe005c31b089a5b4d7a102 (patch) | |
tree | b4e661de29b33bdfa5b476d0fa4e45f51e5bf9f5 /index.html | |
parent | 9b4f4b3e1c28efed457bbae50f23c1737a94450d (diff) | |
download | mu-7452d0525ecfc12c11fe005c31b089a5b4d7a102.tar.gz |
4228
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/index.html b/index.html index ff1fda9d..88e9b14a 100644 --- a/index.html +++ b/index.html @@ -60,6 +60,11 @@ screen and keyboard handling. <li><a href='html/same-fringe.mu.html'>same-fringe.mu</a>: a solution to the <a href='http://wiki.c2.com/?SameFringeProblem'>‘same fringe’</a> problem, demonstrating Mu's coroutines and generic functions. +<li>Two klunky ways to build exceptions out of continuations in Mu: + <a href='html/exception1.mu.html'>1</a>, + <a href='html/exception2.mu.html'>2</a>. +Since Mu is statically typed, there's no way to implement a <tt>try</tt> +primitive that can wrap arbitrary functions. </ul> Now a listing of every layer in Mu. Recall that you can <a href='http://akkartik.name/post/wart-layers'>stop |