diff options
author | Trevor Wennblom <t@trevorw.tw> | 2014-03-19 20:09:48 -0500 |
---|---|---|
committer | Trevor Wennblom <t@trevorw.tw> | 2014-03-19 20:09:48 -0500 |
commit | 464930ecf8c4638dc5e49f253062f02c26292748 (patch) | |
tree | 35f07de3c590a31b4bc497fb7e8a75bd885cc6a2 /julia.html.markdown | |
parent | f45a71a3bfbe095c21d06699987f57a18c39a94e (diff) |
WARNING: deprecated syntax "x[i:]".
0.3.0-prerelease+2077
Diffstat (limited to 'julia.html.markdown')
-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! |