RosettaCodeData/Task/Loops-Foreach/BASIC/loops-foreach-16.basic

6 lines
88 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
items = Array("Apple", "Orange", "Banana")
For Each x In items
WScript.Echo x
Next