I was wondering what the easiest way to parse/interpret a custom language would be. Are there any libraries that could help me out?
I essentially want the end-user to be able to write scripts using a custom syntax that I design (the syntax will probably be similar to c++) and I would need my C++ protogram to interpret the script, much like how there is a C++ library for parsing LUA.
Are there any libraries/examples to help me, or will I just have to do manual tokenizing, parsing and interpreting?