- :logical
past?
check if given date is in the past
Parameters
past? date :date
Returns
Examples
copypastDate: 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...)