Hacker News new | ask | show | jobs
by diskmuncher 1941 days ago
> Basically the only languages with full stackful coroutine support in wide use are Lua and (sort-of) Go.

Aren't Javascript Generators also coroutines?

1 comments

they are, as far as I know, stackless. I.e. you can only yield from the generator top level frame.