hare

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

commit bf573293f87794d4d61f5b67b999db15da358776
parent 504a235bed25579766685f0ec4130812bae922f6
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sat,  9 Dec 2023 21:14:35 -0500

hare::ast: remove inaccurate comment

The storage may also be rune.

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

Diffstat:
Mhare/ast/type.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hare/ast/type.ha b/hare/ast/type.ha @@ -26,7 +26,7 @@ export type enum_field = struct { // enum { FOO = 0, BAR, ... } export type enum_type = struct { - storage: builtin_type, // Must be an integer type + storage: builtin_type, values: []enum_field, };