hare

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

commit d7f81de2522fc98026df9db5e7e998cefb5d4f0d
parent 2796edd52f4cad7c57489cead7f0480c7dbbeb88
Author: Vlad-Stefan Harbuz <vlad@vladh.net>
Date:   Wed, 13 Apr 2022 15:57:59 +0200

datetime: add copyright

Signed-off-by: Vlad-Stefan Harbuz <vlad@vladh.net>

Diffstat:
Mdatetime/arithmetic.ha | 4++++
Mdatetime/chronology.ha | 2++
Mdatetime/date.ha | 3+++
Mdatetime/datetime.ha | 3+++
Mdatetime/format.ha | 4++++
Mdatetime/parse.ha | 4++++
Mdatetime/time.ha | 2++
Mdatetime/timezone.ha | 3+++
8 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/datetime/arithmetic.ha b/datetime/arithmetic.ha @@ -1,3 +1,7 @@ +// License: MPL-2.0 +// (c) 2021-2022 Byron Torres <b@torresjrjr.com> +// (c) 2022 Drew DeVault <sir@cmpwn.com> +// (c) 2021-2022 Vlad-Stefan Harbuz <vlad@vladh.net> use fmt; use math; use time; diff --git a/datetime/chronology.ha b/datetime/chronology.ha @@ -1,3 +1,5 @@ +// License: MPL-2.0 +// (c) 2021-2022 Byron Torres <b@torresjrjr.com> use errors; use time; use time::chrono; diff --git a/datetime/date.ha b/datetime/date.ha @@ -1,3 +1,6 @@ +// License: MPL-2.0 +// (c) 2021-2022 Byron Torres <b@torresjrjr.com> +// (c) 2021-2022 Vlad-Stefan Harbuz <vlad@vladh.net> use errors; use time::chrono; diff --git a/datetime/datetime.ha b/datetime/datetime.ha @@ -1,3 +1,6 @@ +// License: MPL-2.0 +// (c) 2021-2022 Byron Torres <b@torresjrjr.com> +// (c) 2022 Drew DeVault <sir@cmpwn.com> use errors; use time; use time::chrono; diff --git a/datetime/format.ha b/datetime/format.ha @@ -1,3 +1,7 @@ +// License: MPL-2.0 +// (c) 2021-2022 Byron Torres <b@torresjrjr.com> +// (c) 2022 Drew DeVault <sir@cmpwn.com> +// (c) 2021-2022 Vlad-Stefan Harbuz <vlad@vladh.net> use ascii; use errors; use fmt; diff --git a/datetime/parse.ha b/datetime/parse.ha @@ -1,3 +1,7 @@ +// License: MPL-2.0 +// (c) 2021-2022 Byron Torres <b@torresjrjr.com> +// (c) 2022 Drew DeVault <sir@cmpwn.com> +// (c) 2021-2022 Vlad-Stefan Harbuz <vlad@vladh.net> use errors; use strings; diff --git a/datetime/time.ha b/datetime/time.ha @@ -1,3 +1,5 @@ +// License: MPL-2.0 +// (c) 2021-2022 Byron Torres <b@torresjrjr.com> use errors; use time; diff --git a/datetime/timezone.ha b/datetime/timezone.ha @@ -1,3 +1,6 @@ +// License: MPL-2.0 +// (c) 2021-2022 Byron Torres <b@torresjrjr.com> +// (c) 2022 Drew DeVault <sir@cmpwn.com> use time; use time::chrono;