hare

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

commit 9ff94e610b6e6921aeb0d9f334fd687c8b2ae53d
parent 1bdaa5ffcccd5de266f7837ba7b7009ebbeb9886
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 14 Feb 2021 16:48:13 -0500

hare::lex+test: style

Diffstat:
Mhare/lex/+test.ha | 32++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/hare/lex/+test.ha b/hare/lex/+test.ha @@ -78,24 +78,24 @@ fn lextest(in: str, expected: [](uint, uint, token)) void = { (1, 3, btoken::LXOR), (1, 6, btoken::BXOREQ), (1, 9, btoken::TIMES), - (1, 11, btoken::TIMESEQ), + (1, 11, btoken::TIMESEQ), (1, 14, btoken::MODULO), (1, 16, btoken::MODEQ), - (1, 19, btoken::PLUS), - (1, 21, btoken::PLUSEQ), - (1, 24, btoken::MINUS), - (1, 26, btoken::MINUSEQ), - (1, 29, btoken::COLON), - (1, 31, btoken::DOUBLE_COLON), - (1, 34, btoken::BAND), - (1, 36, btoken::LAND), - (1, 39, btoken::ANDEQ), - (1, 42, btoken::BOR), - (1, 44, btoken::LOR), - (1, 47, btoken::OREQ), - (1, 50, btoken::EQUAL), - (1, 52, btoken::LEQUAL), - (1, 55, btoken::EQUAL), + (1, 19, btoken::PLUS), + (1, 21, btoken::PLUSEQ), + (1, 24, btoken::MINUS), + (1, 26, btoken::MINUSEQ), + (1, 29, btoken::COLON), + (1, 31, btoken::DOUBLE_COLON), + (1, 34, btoken::BAND), + (1, 36, btoken::LAND), + (1, 39, btoken::ANDEQ), + (1, 42, btoken::BOR), + (1, 44, btoken::LOR), + (1, 47, btoken::OREQ), + (1, 50, btoken::EQUAL), + (1, 52, btoken::LEQUAL), + (1, 55, btoken::EQUAL), ]; lextest(in, expected); };