How do I print out the result of a method? I want to print out the return of translate but it displays true or false. Suggestions please.
/** * @return
public String translate(boolean trueOrFalse) { if(pback == true) ...
Should probably be:
public String translate(boolean trueOrFalse) { if(trueOrFalse) ...