hare

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

commit 9a26aad3f036db3c1d3e8095e03ec136fa48428e
parent 9e6a3ec48ba88ac375d0bd322b9379147a12cdea
Author: Sebastian <sebastian@sebsite.pw>
Date:   Thu,  5 May 2022 17:35:12 -0400

io: add docs for io::off

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mio/arch+aarch64.ha | 1+
Mio/arch+riscv64.ha | 1+
Mio/arch+x86_64.ha | 1+
3 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/io/arch+aarch64.ha b/io/arch+aarch64.ha @@ -1,4 +1,5 @@ // License: MPL-2.0 // (c) 2021 Eyal Sawady <ecs@d2evs.net> +// An offset for a [[handle]]. export type off = i64; diff --git a/io/arch+riscv64.ha b/io/arch+riscv64.ha @@ -1,4 +1,5 @@ // License: MPL-2.0 // (c) 2021 Drew DeVault <sir@cmpwn.com> +// An offset for a [[handle]]. export type off = i64; diff --git a/io/arch+x86_64.ha b/io/arch+x86_64.ha @@ -1,4 +1,5 @@ // License: MPL-2.0 // (c) 2021 Eyal Sawady <ecs@d2evs.net> +// An offset for a [[handle]]. export type off = i64;