date-and-time

[procedure] date-and-time

ChezScheme: returns a string giving the current date and time.

On other Schemes that implement POSIX time functions, this function can be created by time() and ctime(), asctime() or strftime().

  Gauche:
    (sys-ctime (sys-time))
  STk:
    (require "posix")
    (posix-ctime (posix-time))
  Chicken:
    (seconds->string (current-seconds))

See also sys-time?, posix-time?, current-seconds.