RosettaCodeData/Task/Loops-Foreach/Stata/loops-foreach.stata

5 lines
62 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
local a 2 9 4 7 5 3 6 1 8
foreach i in `a' {
display "`i'"
}