Description
i1 : currentTime()
o1 = 1601847457
|
We can compute, roughly, how many years ago the epoch began as follows.
i2 : currentTime() /( (365 + 97./400) * 24 * 60 * 60 )
o2 = 50.7605251926739
o2 : RR (of precision 53)
|
We can also compute how many months account for the fractional part of that number.
i3 : 12 * (oo - floor oo)
o3 = 9.12630231208649
o3 : RR (of precision 53)
|
Compare that to the current date, available from a standard Unix command.
i4 : run "date"
dim. 04 oct. 2020 23:37:37 CEST
o4 = 0
|