How Can I Get Microsecond

Started by vcmptr, May 31, 2015, 12:46 PM

Previous topic - Next topic

vcmptr

How can I get microsecond with Squirrel?
Like this: 1433076209 0.35124300
My English is not good.

.

Microseconds since when? That could be an issue since it might need large numbers and on a 32bit system there might not be enough if you want time() as microseconds.

If you want since the start of the program then probably (not):
print(clock() * 1000);
.

vcmptr

My English is not good.