Hi, Rebolers! I wrote a function, that allows me to construct where parts of sql, coma separated lists etc: insert-separator: func [ condSerie separator ][       rez: copy []     #160 until [      repend rez [ first condSerie ]      if not tail? next condSerie [ repend rez separator ]      tail? condSerie: next condSerie  #160 ]      return rez ] Is it possible to do it in some shorter and more effective way? brgds Janeks -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
