Is there a ready or idiomatic way of declaring an entry point in a Julia program (i.e. the equivalent of main
in C or the if __name__ == "__main__"
construct in Python)?
This seems to be an important functionality in order to write larger pieces of structured code that won't be used in interactive mode but I couldn't find any hints as to how this is accomplished in Julia, if at all (a possible escape route could be writing an arbitrary function to serve as main
and then calling it once on the top level at the end of the main module but that's not elegant and maybe not even efficient). TIA.
When modules are loaded, if they have a function called __init__
it will be called. Does that help?
You could write a main
function and not call it from the top level of the file. To run the program from the command line you would use julia -L file.jl -e 'main(some,args)'
. The -L
switch tells Julia to load your file, and then -e
tells it to evaluate the following expression. There is also an -E
switch that evaluates and prints (I think of it as "evaluating out loud", since capital letters seem "loud").
This has a couple of advantages over C's main
or Python's if __name__ == "__main__"
:
You don't have to have a single entry point! You can evaluate any expression at all after loading your file, so you don't have to cram all your command line functionality into one function.
The calls you write use full Julia syntax, so often you can avoid parsing the arguments. Soemthing like -e main(53)
calls main
with the integer 53, no need for atoi
inside main
.