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

[REBOL] Problem with try [ open/direct/binary tcp://... ] Re:(8)

From: carl:rebol at: 3-Oct-2000 16:38

>> And I havn't seen an elegant way to concatenate binary! type data. >> Join would be nice. >> >>>> probe join #{012345} [ #{0123} ] >> #{012345237B303132337D}
Works for:
>> join #{ABCD} #{0123}
== #{ABCD0123} But:
>> join #{ABCD} [ #{0123} ]
== #{ABCD237B303132337D} Now that seems like a bug according to the definition of join.
>yeah, REBOLs build-in binary capabilities are a bit strange sometimes :-/ >## to binary! 100 >== #{313030}
Doesn't that seem like a bug?