Try this:
suma: func [series] [
if empty? series [return 0]
add first series suma next series
]Your problem was having the [add first...] in a block. It needs to be open code Sunanda -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
