From 6b2ff8b3ee1ece3abb9894c85ac5d21f063a2e7c Mon Sep 17 00:00:00 2001 From: Wilson Hobbs Date: Sun, 20 Oct 2024 16:53:32 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9cb22b..771d0fe 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ Tests are in the `main_test.go` file for golang. You can run them from the comma ## Optimizations -- [https://github.com/wbhob/learn-compilers/commit/4c4f07e417bc81224d2d739cc4a45255ad648ab5] Use allowlists instead of denylists to validate token sequences. +- https://github.com/wbhob/learn-compilers/commit/4c4f07e417bc81224d2d739cc4a45255ad648ab5 Use allowlists instead of denylists to validate token sequences. - The parser could be optimized to avoid recursion by using an iterative approach. - The interpreter could be optimized to avoid recursion by using an iterative approach. - Integers and floats could be parsed separately to avoid using them as loop counts.