Loops/Foreach: Difference between revisions

Content added Content deleted
Line 220: Line 220:
ForAll({a}, a_list, `WriteF('\d\n', a))
ForAll({a}, a_list, `WriteF('\d\n', a))
ENDPROC</lang>
ENDPROC</lang>

=={{header|AppleScript}}==
<lang AppleScript>repeat with fruit in {"Apple", "Orange", "Banana"}
log contents of fruit
end repeat</lang>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==