Building a Simple APL Interpreter in Python: Part 1
Let's build a simple interpreter for APL – part 1

I am embarking on a journey to build a fully functional APL interpreter using Python, inspired by Ruslan Spivak's series. In this first part, I focus on tokenizing APL code from right to left and defining a grammar to construct an Abstract Syntax Tree. My goal is to learn APL, improve my Python skills, and document the process to help others create their own interpreters.
"By the way, this might be a great moment to let you know that I make mistakes! Lots of them!"