Skip to content
Snippets Groups Projects
Unverified Commit 5b702252 authored by Michael Aaron Murphy's avatar Michael Aaron Murphy Committed by GitHub
Browse files

Merge pull request #678 from aimof/i638-test

Add tests to #638 array parsing issue
parents f9b8b95e b0e7becb
No related branches found
No related tags found
No related merge requests found
# Standard Arrays # Standard Arrays
let array = []
echo @array
let array = [1]
for i in @array
echo $i
end
let array = [1 [2 3] 4 [5 6]] let array = [1 [2 3] 4 [5 6]]
for i in @array for i in @array
echo $i echo $i
......
1
1 1
2 2
3 3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment