hare

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

commit ad84eab931d99e98b9c7492ba91f5429c0d1c72a
parent b81d9102ea1e930d5468cf4e8452ea0f4bb2f7e3
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 19 Feb 2021 14:12:51 -0500

ascii::ctype: rename test

Diffstat:
Mascii/ctype.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ascii/ctype.ha b/ascii/ctype.ha @@ -91,7 +91,7 @@ export fn tolower(c: rune) rune = { } else c; }; -@test fn test() void = { +@test fn ctype() void = { // Just some simple tests assert(isspace(' ') && !isspace('x') && !isspace('こ')); assert(isalnum('a') && isalnum('8') && !isalnum('こ'));