hare

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

commit 41e22780fa4e08a9c8e6b16c125ecf587d5c9567
parent 81c073f632ef8a0cab0afa014c1984b1fe3f0a8c
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 17 Apr 2021 09:03:11 -0400

hare: add doc.ha

Diffstat:
Ahare/doc.ha | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/hare/doc.ha b/hare/doc.ha @@ -0,0 +1,8 @@ +// The hare namespace provides various modules which can be used to work with +// Hare code itself (how meta). The modules available are: +// +// - [hare::ast]: data structures representing Hare's Abstract Syntax Tree +// - [hare::lex]: a lexer for Hare programs +// - [hare::module]: module resolution and Hare cache management +// - [hare::parse]: a parser for Hare programs +// - [hare::unparse]: a Hare "unparser", converts [hare::ast] into source code