aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Shitov <andy@shitov.ru>2020-12-04 18:33:26 +0100
committerAndrew Shitov <andy@shitov.ru>2020-12-04 18:33:26 +0100
commitf055931d386b70c7153d1736a6ebdd29f0456e0a (patch)
treedfaecd4aaa644617eed9e1790856c842fe6aade3
parent3e52554432838b88a13f0ed92506162984c50b09 (diff)
downloadperlweeklychallenge-club-f055931d386b70c7153d1736a6ebdd29f0456e0a.tar.gz
perlweeklychallenge-club-f055931d386b70c7153d1736a6ebdd29f0456e0a.tar.bz2
perlweeklychallenge-club-f055931d386b70c7153d1736a6ebdd29f0456e0a.zip
fix run instruction
-rw-r--r--challenge-089/ash/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-089/ash/index.md b/challenge-089/ash/index.md
index 1082ae5adf..e0862060db 100644
--- a/challenge-089/ash/index.md
+++ b/challenge-089/ash/index.md
@@ -246,7 +246,7 @@ To me, languages built on C++ have their specific charm. On one side, it is the
Julia is another interesting language that actually has many similarities with Raku. For our today’s need, there’s a built-in `gcd` function that I am happily using. The only unexpected obstacle is, maybe, the need to explicitly refer to the accumulator `s` as to a `global` variable.
# To run:
- # $ julia ch-1.julia 100
+ # $ julia ch-1.jl 100
# 13015
n = length(ARGS) == 1 ? parse(Int, ARGS[1]) : 3