Tagged Questions
1
vote
1answer
316 views
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, ...