times.nim: Minor formatting change in the example code

This commit is contained in:
Araq
2018-12-04 22:06:20 +01:00
parent 5abb6caed8
commit 633832d0de

View File

@@ -22,7 +22,7 @@
let time = cpuTime()
sleep(100) # replace this with something to be timed
echo "Time taken: ",cpuTime() - time
echo "Time taken: ", cpuTime() - time
echo "My formatted time: ", format(now(), "d MMMM yyyy HH:mm")
echo "Using predefined formats: ", getClockStr(), " ", getDateStr()