klyn.time.Timestamp.now
property
public static readonly property now as Timestamp:
Description
Returns the current time in seconds since the Epoch (January 1st, 1970, 00:00:00 UTC).
begin = Timestamp.now
# Some lines of code
end = Timestamp.now
print(f"Duration: {end-begin:.2f} secs.")