Hi, I know that I can pass arguments to a script using ARGS and then just running from the console prompt as in
> julia test01.jl 2048
where the argument 2048 is passed to test01.jl. But what if I want to pass
this argument inside julia to the same script
julia > include("test01.jl") , where do I include the 2048 argument?
Now I could do it form inside julia but then I have no access to the
variables.
Sorry if this has been asked before but a search in google yielded no
answers
Cheers
Gino
