I am trying to write a Java question, which involves some static analysis on the student answer before running the code.
In order to do that, I need to store the student answer in a variable.
I tried:
String studentAnswer = {{ STUDENT_ANSWER | e'java' }};
and
String studentAnswer = "{{ STUDENT_ANSWER | e'java' }}";
but neither of those worked. What is the correct incantation?
Thanks,
Mark Stern