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

[REBOL] Another date/zone inconsistency

From: pwawood::mango::net::my at: 16-Jan-2005 17:10

It seems that to-date ignores a timezone without a preceeding plus or minus sign whereas directly setting the timezone allows an unsigned timezone :
>> rdate: to-date "31-12-9999 23:59:59 8:00"
== 31-Dec-9999/23:59:59
>> rdate/zone
== 0:00
>> rdate/zone: 8:00
== 8:00
>> rdate/zone
== 8:00 Regards Peter