klyn.time.Timestamp.toString
method
public override toString() as String:
DescriptionReturns a string representation of this Timestamp object.
import klyn.time
timestamp = Timestamp.now
print(timestamp.toString()) # Output: Timestamp(1693459200.0)
ReturnsA string representation of the Timestamp object. ``` import klyn.time timestamp = Timestamp.now print(timestamp.toString()) # Output: Timestamp(1693459200.0) ```