Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] fine tuning question of Rebol

From: sags::apollo::lv at: 25-Apr-2005 17:22

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 []     &#16#160 until [      repend rez [ first condSerie ]    &#160 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