i1 : currentTime() o1 = 1208592926 |
We can compute, roughly, how many years ago the epoch began as follows.
i2 : currentTime() /( (365 + 97./400) * 24 * 60 * 60 ) o2 = 38.2987851931961 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 = 3.58542231835324 o3 : RR (of precision 53) |
Compare that to the current date, available from a standard Unix command.
i4 : run "date" Sat Apr 19 04:15:26 EDT 2008 o4 = 0 |