Prototype of a command parser to be used in future projects. In many of my projects I have dev tools including being able to run commands. This project demonstrates an improved version that supports running multiple commands at a time (separated by semicolon) as well as handling strings containing spaces and special characters. Spaces and slashes at the start of a command are skipped (note that I usually have forward slash as the key to open the input box). For this demo, I have the command box open forever. Some basic commands are provided including `print [text: str] [duration: num]`. Try pasting the following as one input: # This whole comment is safe to paste into the command input; print "this is an example" 10; print "of running multiple commands." 10; print "> supports strings inside double quotes" 10; print "> special chars in strings are allowed... ;\"\\" 10; print "try running the following command: `print \"Hello, world!\"`" 10;