
julia
List of commands for julia:
-
julia:tldr:21ecc julia: Evaluate a string of Julia code, passing arguments to it.$ julia -e '${for x in ARGS; println(x); end}' ${arguments}try on your machineexplain this command
-
julia:tldr:4093f julia: Execute a Julia program that takes arguments.$ julia ${program-jl} ${arguments}try on your machineexplain this command
-
julia:tldr:6df23 julia: Start Julia in parallel mode, using N worker processes.$ julia -p ${N}try on your machineexplain this command
-
julia:tldr:9e05c julia: Evaluate a string containing Julia code.$ julia -e '${julia_code}'try on your machineexplain this command
-
julia:tldr:c2e28 julia: Start a REPL (interactive shell).$ juliatry on your machineexplain this command
-
julia:tldr:eb5cb julia: Execute a Julia program and exit.$ julia ${program-jl}try on your machineexplain this command