Data update

This commit is contained in:
Ingy döt Net 2025-02-27 18:35:13 -05:00
parent 8e4e15fa56
commit 72eb4943cb
1853 changed files with 35514 additions and 9441 deletions

View file

@ -2,13 +2,13 @@ val input = "March 7 2009 7:30pm -05:00"
val iformat = "January 2 2006 3:04pm -07:00"
val oformat = "January 2 2006 3:04pm MST"
val d1 = datetime(input, iformat)
val d1 = datetime(input, fmt=iformat)
val d2 = d1 + dr/T12h/
val d3 = datetime(d2, "US/Arizona")
val d4 = datetime(d2, zls)
val d5 = datetime(d2, "Z")
val d6 = datetime(d2, "+02:30")
val d7 = datetime(d2, "EST")
val d3 = datetime(d2, fmt="US/Arizona")
val d4 = datetime(d2, fmt=zls)
val d5 = datetime(d2, fmt="Z")
val d6 = datetime(d2, fmt="+02:30")
val d7 = datetime(d2, fmt="EST")
writeln "input string: ", input
writeln "input format string: ", iformat