RosettaCodeData/Task/Loops-Foreach/REBOL/loops-foreach.rebol
2018-08-17 15:15:24 +01:00

13 lines
328 B
Text

REBOL [
Title: "Loop/Foreach"
URL: http://rosettacode.org/wiki/Loop/Foreach
]
x: [Sork Gun Blues Neds Thirst Fright Catur]
foreach i x [prin rejoin [i "day "]] print ""
; REBOL also has the 'forall' construct, which provides the rest of
; the list from the current position.
forall x [prin rejoin [x/1 "day "]] print ""