#What is the fastest way to exit from a lexical scope (i.e. break from a loop)? In my benchmark it's call/cc, but shouldn't partcont be faster?
#Right now, capturing partial continuation requires all activation frames in the VM stack area to heap, and that cost is not smaller than full continuations. I have some ideas bouncing around to optmize it.