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

[REBOL] Re: ['=]

From: pwawood:mango:my at: 27-Oct-2004 6:23

Hallvard
>> http://www.rebol.com = "http://www.rebol.com"
== false Because:
>> type? http://www.rebol.com
== url!
>> type? "http://www.rebol.com"
== string! So use :
>>http://www.rebol.com = to-url "http://www.rebol.com"
== true The clue is in the comments of the source of '
> {Returns TRUE if the values are equal and of the same datatype.}
Hope this helps. Peter On Wednesday, Oct 27, 2004, at 05:49 Asia/Kuala_Lumpur, Hallvard Ystad wrote: