hare

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

commit 3673c72dae8317c20b725b0cff63ecb6d4803e13
parent e9aaaa82308ad34f7b56460b6a8d55698d8e252d
Author: Bor Grošelj Simić <bor.groseljsimic@telemach.net>
Date:   Mon, 19 Apr 2021 18:59:27 +0200

bytes/tokenize.ha: uncomment a test

Diffstat:
Mbytes/tokenize.ha | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bytes/tokenize.ha b/bytes/tokenize.ha @@ -94,8 +94,7 @@ export fn remaining_tokens(s: *tokenizer) []u8 = { _: void => abort(), }; - //assert(equal(peek_token(&t) as []u8, peek_token(&t) as []u8)); - //assert(false); + assert(equal(peek_token(&t) as []u8, peek_token(&t) as []u8)); match (next_token(&t)) { b: []u8 => assert(equal([], b)), _: void => abort(),