diff options
author | Eduardo Julian | 2017-04-09 21:48:34 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-04-09 21:48:34 -0400 |
commit | dcace97188b97416418056bfb419d830ee1a3cff (patch) | |
tree | f32347b74076dcf9521bfffed9151425d9476213 /stdlib/source | |
parent | d4c23b4cce91ae8cfcf1bda6b577ff50c55abe3c (diff) |
- Some refactoring about continuations.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/function/cont.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/lux/function/cont.lux b/stdlib/source/lux/function/cont.lux index 911e66995..7635d7129 100644 --- a/stdlib/source/lux/function/cont.lux +++ b/stdlib/source/lux/function/cont.lux @@ -79,7 +79,7 @@ (lambda [k] (k (run scope)))) -(def: #export (static f) +(def: #export (shift f) (All [a] (-> (-> (-> a (Cont a a)) (Cont a a)) |