I'm used to having compilers create a .exe after compiling some code. That doesn't seem to happen in Julia though.
Unless I'm doing something wrong, it seems only the interactive JIT compiler can be used, making it seem almost like an interpreted language.
Can one make .exes using $ julia filename
or not? How is Julia a compiled language if it doesn't actually create a binary? I'm pretty new to programming in general, but I'm pretty sure the concept of compiling is translating a file into machine code, I don't understand what exactly would make the JIT compiler obligatory in Julia's case.