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

[REBOL] Re: Vertical formatting etc

From: carl:cybercraft at: 4-Oct-2001 10:42

On 04-Oct-01, Richard Smolak wrote:
> what about: >>> form ["Put" "them" "together"] > == "Put them together"
Chuckle - yeah, two more bytes saved. I just forget that 'form isn't just 'join with spaces added...
>> join "aaa" "bbb"
== "aaabbb"
>> form "aaa" "bbb"
== "bbb" so I tend to use 'reform and 'rejoin when joining strings in a block, as I'm sure it'd make my head hurt if I tried to figure out why 'join and 'form are not almost the same... -- Carl Read