diff options
author | Anthony Wang | 2021-12-31 14:38:12 -0600 |
---|---|---|
committer | Anthony Wang | 2021-12-31 14:38:12 -0600 |
commit | d27fc7325f9a229bc75d7f670c47a23dd4870b02 (patch) | |
tree | 85553071a3b0e565fd0faa61e1571b3de3aae103 | |
parent | f6c080fd9f22141085046b3ead643563648a1276 (diff) |
Make Julia code more idiomatic
-rw-r--r-- | test.jl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ println("test") N = 1000 A = [] -for i in 0:N-1 +for i = 0:N-1 push!(A, i) end |