http://www.rebol.com/docs/dictionary.html#8227395 states: "String-based datatypes are considered equal when they are identical or differ only by character casing (uppercase = lowercase). Use == or find/match/case to compare strings by casing."
But then: >> a-string: "STRING" == "STRING" >> type? first next a-string == char! >> (first next a-string) = #"t" == false >> (first next a-string) = #"T" == true Is char! not considered a string-based datatype? ~H Praetera censeo Carthaginem esse delendam -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
