Re: how to get current timestamp?

2020-01-02 Thread Ferhat Kurtulmuş via Digitalmars-d-learn
On Thursday, 2 January 2020 at 18:56:37 UTC, bachmeier wrote: On Thursday, 2 January 2020 at 18:41:59 UTC, Ferhat Kurtulmuş wrote: Is there any built-in method returning current timestamp like doing it in python like: time.time() which returns something like 1577990478.4675508? I use import

Re: how to get current timestamp?

2020-01-02 Thread bachmeier via Digitalmars-d-learn
On Thursday, 2 January 2020 at 18:41:59 UTC, Ferhat Kurtulmuş wrote: Is there any built-in method returning current timestamp like doing it in python like: time.time() which returns something like 1577990478.4675508? I use import std.datetime; Clock.currTime().toISOExtString()

how to get current timestamp?

2020-01-02 Thread Ferhat Kurtulmuş via Digitalmars-d-learn
Is there any built-in method returning current timestamp like doing it in python like: time.time() which returns something like 1577990478.4675508?