Relative Content

Tag Archive for interpreters

Whats the difference between an interpreted language and one compiled to a VM? [duplicate]

This question already has answers here: Interpreted vs Compiled: A useful distinction? (7 answers) Closed 10 years ago. It occurs to me that there’s not a heck of a lot of difference between $>python module.py And: $>javac module.java $>java module.class The former compiles to an intermediate language (python bytecode) and executes the program. The latter […]

How would I modify the JavaScript interpreter?

I know this is a crazy question, but I want to edit the JavaScript interpreter. I don’t care if it’s node.js or browser-js, but I want to edit any JS interpreter, whichever is easiest to edit, so I can parse the language with different keyboards.