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

[REBOL] (Fwd) fine tuning question of Rebol

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

Hi, Rebolers! I wrote a function, that allows me to construct where parts of sql, coma separated lists etc: Ssee attached file. Is it possible to do it in some shorter and more effective way? brgds Janeks I am trying second time because of some conversions of [] characters. Sorry if it will be the same! -- Attached file included as plaintext by Ecartis -- -- Desc: Text from file 'insep.r' insert-separator: func [ condSerie separator ] [ rez: copy [] until [ repend rez [ first condSerie ] if not tail? next condSerie [ repend rez separator ] tail? condSerie: next condSerie ] return rez ]