diff options
author | Adam Bard <github@adambard.com> | 2014-03-19 18:39:35 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2014-03-19 18:39:35 -0700 |
commit | 0e80e9580b49384e106f77bb52b0e90bce6eb286 (patch) | |
tree | 35f07de3c590a31b4bc497fb7e8a75bd885cc6a2 | |
parent | f45a71a3bfbe095c21d06699987f57a18c39a94e (diff) | |
parent | 464930ecf8c4638dc5e49f253062f02c26292748 (diff) |
Merge pull request #573 from trevor/patch-1
WARNING: deprecated syntax "x[i:]".
-rw-r--r-- | julia.html.markdown | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/julia.html.markdown b/julia.html.markdown index 36c57b2a..665b4fd3 100644 --- a/julia.html.markdown +++ b/julia.html.markdown @@ -193,7 +193,6 @@ a = [1:5] # => 5-element Int64 Array: [1,2,3,4,5] # You can look at ranges with slice syntax. a[1:3] # => [1, 2, 3] -a[2:] # => [2, 3, 4, 5] a[2:end] # => [2, 3, 4, 5] # Remove elements from an array by index with splice! |