in reply to Re^3: Parrot 0.8.0, "Pareto principle" released!
in thread Parrot 0.8.0, "Pareto principle" released!

Well, parrot uses CPS (continuation passing style) for control flow, and I'm pretty sure it's stackless in the sense that a call to HLL function doesn't imply a function call (which would use the stack) in the vm. So it's easy to implement language-level coroutines efficiently.
  • Comment on Re^4: Parrot 0.8.0, "Pareto principle" released!