When i type
$ julia -p 2 run.jl
is there any way to access 2 from inside run.jl ? I know that you can use ARGS to access arguments, for example
#run.jl println(ARGS[2])
and working
$ julia -p 2 run.jl abcd
will return b . But I can not find a way to access the parameters -p <n> .
source share