How could I write Java code that is executed like javascript code used together with the eval function?
What I would like to achieve would be something like this:
System.execute ("String str = \"test\"; System.out.println(str);");
which would print the word 'test'. (10x dehmann )
A code sample would help a lot.