I'm trying to make a program where the code changes after it runs.
I have three classes:
The first specifies the changes, then uses the second class to edit the code of the third, and then uses the thrid.
The problem I'm having is that it all compiles first so the third program is run as if nothing was changed.
After it's run the third class has all the code I want it to and is properly changed so if I run it again it works.
So, is there any way I could get it to either run twice or recompile itself as its running?


