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

[REBOL] Re: Curious 'rejoin behavior

From: brett:codeconscious at: 31-May-2001 9:09

Hi Scott,
>> series? <test>
== true
>> append <test> "-test2"
== <test-test2>
>> source rejoin
rejoin: func [ "Reduces and joins a block of values." block [block!] "Values to reduce and join" ][ if empty? block: reduce block [return block] append either series? first block [copy first block] [ form first block] next block ] It looks odd, but is not strictly a bug. Brett.