Hi Jason,

<< Python has a really nice tail syntax for ends of list, strings, tuples
etc.

There must be an easy way to do this as cleanly in REBOL...
What do you all think about this essential idioms?

[Python]
>>> test = "abcde"
'abcde'
>>> test[0]
'a'
>>> test[4]
'e'
>>> test[-1]
'e'
>>> test[-2]
'd'                     >>

That syntax doesn't grab me as being very natural. It kind of makes it look
like series! are circular as well, which they aren't. Anyway, in general I'm
fine with TAIL, SKIP, and BACK. In this particular case, you could write a
remove-tail function which would be even better.

--Gregg

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to