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

[REBOL] Re: to-string

From: chris:ross-gill at: 4-Nov-2002 15:40

Hi Romano,
> >> to string! #"" > == "^@"
It appears that #"" relates to character 0.
>> to-string #""
== "^@"
>> to-integer #""
== 0
>> to-char to-integer #""
== #"^@"
>> = #"" #"^@"
== true
>> to-integer #"^@"
== 0 - Chris