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:
parent
ddf1ac13c0
commit
b93d22d707
1 changed files with 5 additions and 1 deletions
|
@ -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}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue