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

[REBOL] Re: A question in time saves... Clouds???

From: gchiu:compkarori at: 5-Jun-2001 20:04

> and what does a time string look like? I could find > wait 100 which > is no. of seconds and I was shown wait 10:20:30, > HH:MM:SS. How about > a specific time like 11:32 PM ?
I wrote this a couple of years ago: wait-till: func [ o'clock ] [ either now/time < o'clock [ wait ( o'clock - now/time ) ][ wait ( 24:00 - now/time + o'clock ) ] ] eg: wait-till 2:00 ; wait till 2 AM. -- Graham Chiu