There is also 'at, to set the position:
a: ["a" "b" "c"]
a: at a 2 ; also try negative values
a ; == ["b" "c"]
a: head a ; == ["a" "b" "c"]Anton. > > Does REBOL think it's at the first value, the second, the third, etc? > How can I find out? > > >> a: ["a" "b" "c"] > == ["a" "b" "c"] > >> length? a > == 3 > >> a: next a > == ["b" "c"] > >> index? a > == 2 > Ashley -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
