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


time

Function: time { -> " 9:45PM" }
file: 10-C-utils.muf
package: muf
status: alpha

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

: time { -> $ }
    .sys$s.millisecsSince1970 "%l:%M%p" printTime
;

See section date. See section printTime.


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