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 | 9781 reads
|
Browse archives
Active forum topics |
Recent comments
30 weeks 4 days ago
30 weeks 5 days ago
30 weeks 5 days ago
1 year 5 days ago
1 year 5 weeks ago
1 year 6 weeks ago
1 year 6 weeks ago
1 year 9 weeks ago
1 year 13 weeks ago
1 year 13 weeks ago