How a program coded and compiled in Julia compares to interpreted Julia in terms of performance?

I know that I can generate an executable file in Julia: Creating a binary from Julia code · PackageCompiler

In this page has a timing comparison between the interpreted and compiled app.

My question is:

How the performance of an compiled executable in Julia compares to the interpreted way?

Is the compiled one faster than the interpreted? I’m asking this because Julia loads LLVM in memory for its JIT compilation, in that page above GCC is used.

Julia is not normally interpreted. I’ve heard that there’s an interpreter mode, but I’ve never tried it. For normal use Julia code is always fully compiled before it is run. I would guess runtime is therefore very similar.