past?

check if given date is in the past


Parameters

past? date :date

Returns

  • :logical

Examples

copy
pastDate: before.weeks:2 now futureDate: after.weeks:1 now print past? futureDate ; false print past? pastDate ; true print past? now ; true ("now" has already become past...)

Related