klyn.time.TimeZone.toString
method
public override toString() as String:
DescriptionReturns a string representation of this TimeZone object.
import klyn.time
timeZone = TimeZone.GMT
print(timeZone.toString()) # Output: GMT (UTC+0)
ReturnsA string representation of the TimeZone object. ``` import klyn.time timeZone = TimeZone.GMT print(timeZone.toString()) # Output: GMT (UTC+0) ```