We've encountered an issue exporting this macro. Please try exporting this page again later.
Excerpt |
---|
Code Block |
---|
string [] fruit = "Apple|Apricot|Avocado|Banana|Blackberry|Blueberry|Cherry|Coconut";
for(string f in fruit) {
runnerLog(f);
} |
Info |
---|
Use this method when looping through arrays and you don't need to know the index position. |
|