Julia
Julia is a high-level, high-performance dynamic programming language designed to address the needs of high-performance numerical and scientific computing. It's also effective for general-purpose programming.
Executing Julia Scripts
Here's how to execute Julia scripts and pass arguments:
# Execute script from the file; pass additional arguments
julia script.jl arg1 arg2
# Execute command-line arguments like a script
julia -e 'for x in ARGS; println(x); end' foo bar
Learning More About Julia
Explore these helpful resources: