문제

Which Turing-complete language implementations on the JVM do not use the JVM stack as a call stack?

(I ask because I want to implement coroutines between Scala and another language in the same thread.)

도움이 되었습니까?

해결책

  • Morpho
  • SISC (Second Interpreter of Scheme Code)

Implementations which once did not use the JVM stack, but in their latest versions, do:

  • LuaJ, prior to version 2
  • JRuby (in its experimental YARV bytecode interpreter, since removed)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top