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

[REBOL] Re: ['=]

From: pwawood::mango::net::my at: 29-Oct-2004 7:42

Ladislav I'm not sure whether it's a bug or simply unclear documentation. I always trip up over the following example:
>> (first "1234567890") = "1"
== false until I remember that first returns a char!
>> (first "1234567890") = #"1"
== true So I will follow your advice and submit this question to RT either through feedback or directly to RAMBO Help = Returns TRUE if the values are equal. Help == Returns TRUE if the values are equal and of the same datatype. Implies that values can be equal regardless of datatype. {This in itself seems a little incongruous given that it is a value which has a datatype not a word.} I will report back RT's response to the Mailing List. Regards Peter I On Wednesday, Oct 27, 2004, at 22:10 Asia/Kuala_Lumpur, Ladislav Mecir wrote: