public static readonly property nowUTC as DateTime:
Returns the current date and time in UTC.
This property identifies the same kind of absolute instant as DateTime.now, but exposes its calendar components with a zero UTC offset. Use it for protocols, persistence formats, and comparisons that require a timezone-independent reference.
A DateTime object representing the current UTC date and time.
import klyn.time
utc = DateTime.nowUTC
print(utc.toString("%Y-%m-%d %H:%M:%S %z"))
assert utc.timeZone == TimeZone.UTC