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

[REBOL] Re: forecast

From: chris:ross-gill at: 7-May-2001 18:24

Hi,
> An interger that begins with a zero is still an integer ? > > integer? 12345 > == true > >> integer? 01234 > == true
For the purposes of joining it to a url! or a string! -
>> zip: 02155
== 2155
>> type? zip
== integer!
>> join "My zip is " zip
== "My zip is 2155" Isn't quite true. Whereas -
>> zip: #02155
== #02155
>> type? zip
== issue!
>> join "My zip is " zip
== "My zip is 02155" Is correct. - Chris