From 1f85b418dd7960c28f16de21c44dcb4e2e05e694 Mon Sep 17 00:00:00 2001 From: Carson Fleming Date: Fri, 13 Mar 2026 01:15:35 -0400 Subject: modulo operators before I forget --- lexer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lexer.h') diff --git a/lexer.h b/lexer.h index 62ee9c2..24fb22d 100644 --- a/lexer.h +++ b/lexer.h @@ -39,7 +39,9 @@ enum token_type { LOG_PIPE, PIPE_EQ, DIV, - DIV_EQ, // comments too + DIV_EQ, + MOD, + MOD_EQ, LT, GT, LEQ, @@ -48,8 +50,6 @@ enum token_type { SHR_EQ, SHL, SHL_EQ - /* more to come */ - // ->, everything that can precede = (multi-symbols) }; typedef unsigned long long intlit_t; -- cgit v1.2.3