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

[REBOL] Bug in To?

From: pwawood::mango::net::my at: 28-Mar-2005 23:11

I found that "to" doesn't handle << >> properly if entered directly from the console :
>> to tag! "<test>"
== <<test>>
>> to string! <<test>>
** Script Error: Operator is missing an argument ** Near: to string! <<test> > but it does in a variable :
>> t: "<test>"
== "<test>"
>> t: to tag! t
== <<test>>
>> t: to string! t
== "<test>" Is this a bug or have I overlooked something? Regards Peter