1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

julia: add -E example, fix link (#4062)

This commit is contained in:
Zlatan Vasović 2020-05-25 17:43:07 +02:00 committed by GitHub
parent ddf1ac13c0
commit b93d22d707
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
# julia
> A high-level, high-performance dynamic programming language for technical computing.
> More information: <https://julialang.org>.
> More information: <https://docs.julialang.org/en/v1/manual/getting-started/>.
- Start a Julia REPL session:
@ -23,6 +23,10 @@
`julia -e '{{for x in ARGS; println(x); end}}' {{arguments}}`
- Evaluate an expression and print the result:
`julia -E '{{(1 - cos(pi/4))/2}}'`
- Start Julia in parallel mode, using N worker processes:
`julia -p {{N}}`