User loginNavigation |
Typed callcc in a stack-based languageI have been playing with the idea of adding a call-with-current-continuation primitive (
callcc : ('A ('A ('A -> 'B) -> 'B) -> 'B)
The formal semantics would be: [$A [$B] callcc $C] == [$A [$C] $B] An example usage would be:
>> define do_twice { dup [apply] dip apply }
>> define test { 1 [do_twice] callcc inc }
>> test
stack: 3
My questions are: am I doing this right? Does the type look correct? Is it a good idea to add continuations to Cat? Thanks in advance! By cdiggins at 2007年06月04日 21:24 | LtU Forum | previous forum topic | next forum topic | other blogs | 10112 reads
|
Browse archives
Active forum topicsNew forum topicsRecent comments
|