2017-06-15 18:23:05 +00:00
|
|
|
# Julia
|
|
|
|
# high-level dynamic programming language designed to address the needs of high-performance numerical analysis
|
|
|
|
# and computational science while also being effective for general-purpose programming
|
|
|
|
|
2018-07-17 09:42:16 +00:00
|
|
|
# Execute script from the file; pass additional arguments
|
2017-06-15 18:23:05 +00:00
|
|
|
julia script.jl arg1 arg2
|
|
|
|
|
|
|
|
# Execute command like arguments like script
|
|
|
|
julia -e 'for x in ARGS; println(x); end' foo bar
|
|
|
|
|
|
|
|
# See also:
|
|
|
|
# Julia language cheat sheets at /julia/
|
|
|
|
# list of pages: /julia/:list
|
|
|
|
# learn julia: /julia/:learn
|
|
|
|
# search in pages: /julia/~keyword
|