>>106629853
I fixed the matcher, but now I am just debating removing it entirely. The generative part of the language is the interesting part and the matcher adds a lot of complexity to the compiler design. If I remove it, then you lose the ability to match all or part of a string and conditionally jump on that, and the compiler would not be able to self-host. I am actually considering removing the ability to mutate the environment at all. So the language just has recursive rules which it uses to make text, which is the interesting part anyways. Matching and mutability feel like bloat.