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

[REBOL] Re: Personal Programming and Rebol Promotion

From: pwawood::gmail at: 23-Dec-2007 16:37

Hi Nick
> Just tonight, a reader from my site wrote to say that in the past, all > the documentation he had previously read had led him to misunderstood > the syntax of a simple 'if expression, originally thinking that the > conditional evaluation needed to be placed in brackets (which made > every condition always evaluate to true...).
I must be missing something:
>> (1 = 2)
== false
>> (1 = 1)
== true
>> ("a" = "a")
== true
>> ("a" > "c")
== false Regards Peter