I'm exploring adding output dependent on the number of attempts a student has made.
By way of experimenting, I tried printing this from a java template
public static void main(String[] args) {
__tester__ main = new __tester__();
main.runTests();
System.out.println(" numchecks " + {{QUESTION.stepinfo.numchecks}});
}
I expect I am missing something obvious...