Today I made some progress on the interpreter for the Basic-like language I named BasicEX. For today I just implemented a way to do multiple printings on the print statement.
Previously, you could print just one thing per print statement, and a new line was automatically after each print. Now, you can print multiple things on a single print, adding new options for programmers.
Next week I will add the same feature on the input statement.
Multiple Printing Example