Continuation passing style vs aggressively trimmed call stack?
I'm considering something like CPS for use in an interpreter for an actor based language. The function arguments are passed in an array of variants, and the continuation returned in the same array, so an simple function def add (x,y) => x + y so a call from the read/eval/loop would be print( add(7, 5) ) would on entry be [&add, x...