How is Rune language executed in low level? #577
Unanswered
evan0greenup
asked this question in
Q&A
Replies: 1 comment 2 replies
-
The language is compiled and translated to bytecode (or an array of instructions) which are executed sequentially. Memory is stored on a stack. The core logic of the virtual machine is actually fairly easy to follow here. You can see the instructions by checking "Instructions" in the playground. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is Rune language firstly interpreted by Interpreter? Or firstly translate into bytecode, then executed in vm? Or compile to machine code, and directly run by machine?
Beta Was this translation helpful? Give feedback.
All reactions