In my understanding, julia is a script language with a JIT compiler. But in java you can find files *.class; In python you can find files *.pyc. This means that java and python must first convert their language to bytecode, and then use VM to run that bytecode. However, I cannot find bytecode files for julia like *.jlc. Any ideas?
source
share