When I compile this script, it sends me an error, "Illegal start of expression", on the 4th line of the next script:
public void timeTick()
{
minutes.increment();
if(minutes.getValue() == 0) && (hours.value < 11)// it just rolled over!
hours.value = hours.value + 1;
updateDisplay();
}
What's wrong here??? please helppp!

