From b93d22d7074105ecdf71ca54cec231dc9b91c8a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zlatan=20Vasovi=C4=87?= Date: Mon, 25 May 2020 17:43:07 +0200 Subject: [PATCH] julia: add -E example, fix link (#4062) --- pages/common/julia.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/common/julia.md b/pages/common/julia.md index 9cf864b45a..0f8311a6fc 100644 --- a/pages/common/julia.md +++ b/pages/common/julia.md @@ -1,7 +1,7 @@ # julia > A high-level, high-performance dynamic programming language for technical computing. -> More information: . +> More information: . - 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}}`