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

[REBOL] Re: Rebol# or Rebol on DotNET

From: hallvard:ystad:helpinhand at: 14-Oct-2003 22:05

Dixit "Philippe Oehler" <[info--id-net--ch]> (Tue, 14 Oct 2003 12:36:45 +0200):
>Even for time value. > >i.e. 10:00 > >Would be nice to get the hour or the minutes without >parsing. > >ti: 10:00 >ti/2: 30 > >--> ti: 10:30 >
Seems to me the time! value already works like that:
>> a: 12:34
== 12:34
>> a/2
== 34
>> a/1
== 12
>> a/2: 44
== 44
>> a
== 12:44
>>
Hallvard