Go to the first, previous, next, last section, table of contents.


date

Function: date { -> "Thu Mar 15, 1956 }
file: 10-C-utils.muf
package: muf
status: alpha

The date function is a trivial convenience function returning the current date. It is currently defined as

: date { -> $ }
    .sys$s.millisecsSince1970 "%a %b %e, %Y" printTime
;

See section time. See section printTime.


Go to the first, previous, next, last section, table of contents.