Re: [Phix] Language Feature Request: For Each
- Posted by _tom (admin) Dec 17, 2021
- 1130 views
consider expanding the ''in'' pattern
sequence s = {"one","two","three"} while ( x in s ) do ? x end while
"one" "two" "three"
for (x in s ) do
consider expanding the ''in'' pattern
sequence s = {"one","two","three"} while ( x in s ) do ? x end while
"one" "two" "three"
for (x in s ) do