index
:
print-hello-world
master
A potpourri of programming languages
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
-rw-r--r--
test.jl
3
1 files changed, 1 insertions, 2 deletions
diff --git a/test.jl b/test.jl
index 2d7b6de..d73c4b8 100644
--- a/
test.jl
+++ b/
test.jl
@@ -17,8 +17,7 @@ end
ans = 0
for i in A
for j in A
- global ans
- ans += gcd(i, j)
+ global ans += gcd(i, j)
end
end
println(ans)