How does this callcc example work?

Posted by Jake on Stack Overflow See other posts from Stack Overflow or by Jake
Published on 2010-05-13T16:41:46Z Indexed on 2010/05/13 16:44 UTC
Read the original article Hit count: 359

(callcc (fun k -> k 7)) + 3
(callcc (fun k -> 7)) + 3

What do each of these evaluate to and why?

© Stack Overflow or respective owner

Related posts about callcc

Related posts about functional-programming