I want change TRUE and FALSE to "Verdadero" and "Falso" in "mchoice" exercises of R-exams.
In which template should I do it?
CodePudding user response:
answerlist(ifelse(solutions, "Verdadero", "Falso" ))
I want change TRUE and FALSE to "Verdadero" and "Falso" in "mchoice" exercises of R-exams.
In which template should I do it?
CodePudding user response:
answerlist(ifelse(solutions, "Verdadero", "Falso" ))