The duration between two times, expressed as nearest whole minutes

Something like this?

using Dates
ts1 = now()
sleep(61)
ts2 = now()
(ts2 - ts1) ÷ Millisecond(60000)
2 Likes