Okay, so I'm not good with all the terms and stuff, BUT here's what I have created thus far:
1: An app that reads character by character the contents of a source code file. And;
2: An app that determines whether character/string 'x' is an identifier, or integer, or whatever.
and 3: Another app that puts it all together, and creates another file that basically contains instructions to be sent to my 4th app, basically along the lines of:
Assign the value of Integer oldValue to Integer newValue.
So, then my 4th app receives this instruction, and "Compiles" it (well, in this case I'd say that I just want to interpret it), which will then create an application that does:
int newValue = oldValue;
So, since I have the parser etc already done, how can I translate my instructions into instructions that lead to actual actions, and generate an EXE file, so when I double-click the file, it will perform the above-mentioned action?
I hope this itsn't confusing for you.
So, basically, I guess what I'm asking is: "How can I programmatically create an "Event" from a string, save it to file and generate an exe?"