Time
seconds->hours
current-seconds
current-hours
5.3.3.7

Time

 (require "time.rkt")

procedure

(seconds->hours secs)  exact-integer?

  secs : exact-integer?
Takes secs, a number of seconds since the epoch, and converts it to a number of days since the epoch, rounding down.

For example, compose with with the current-seconds function to get current-hours.
Returns the current seconds since the epoch.

procedure

(current-hours)  exact-integer?

Returns the current hours since the epoch.