hare

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

commit d83ff036f3bd97571c928f868c6960c4cc9ade3c
parent 4592f7a388f8667e702e44e466144c8a8759d53e
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 20 Apr 2021 08:34:33 -0400

rt: add README

Diffstat:
Art/README | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/rt/README b/rt/README @@ -0,0 +1,8 @@ +The rt (runtime) module provides low-level, non-portable access to the host, and +support code for the Hare compiler and standard library. The use of this module +is not recommended for most user programs, and any program which uses rt is +unlikely to be portable. However, any program which needs to make syscalls +directly will have to use rt to do so. + +Documentation for most interfaces is not provided; refer to the host +documentation (e.g. Linux man pages) instead.