klyn.time.Timestamp.toString
method
public override toString() as String:
Description
Returns a string representation of this Timestamp object.
import klyn.time

timestamp = Timestamp.now
print(timestamp.toString())  # Output: Timestamp(1693459200.0)
Returns
A string representation of the Timestamp object. ``` import klyn.time timestamp = Timestamp.now print(timestamp.toString()) # Output: Timestamp(1693459200.0) ```