hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 98e1e5c9f1ad74f88bbca57d5a1aa71f0f153995
parent 54cc11ec53b04ddb8260c338686eca2111eb0992
Author: Byron Torres <b@torresjrjr.com>
Date:   Wed, 29 Dec 2021 22:19:40 +0000

remove todo for timelike calc_ fns

Signed-off-by: Byron Torres <b@torresjrjr.com>

Diffstat:
Mdatetime/time.ha | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/datetime/time.ha b/datetime/time.ha @@ -1,8 +1,6 @@ use errors; use time; -// TODO: rework the following functions and their signatures - fn calc_hmsn(t: time::duration) (int, int, int, int) = { const hour = (t / time::HOUR): int; const min = ((t / time::MINUTE) % 60): int;