must set
boolean isFun to true
I’m putting:
boolean isFun(true);
is this not correct?
must set
boolean isFun to true
I’m putting:
boolean isFun(true);
is this not correct?
To assign values to booleans/int/chars you do this:
boolean isJava = true;
int minutesLeft = 15;
char grade = 'B';