Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Objects Creating the MVP Prompting for Guesses

cannot find symbol

error: cannot find symbol

boolean isHit = prompter.promptForGuess():

2 Answers

Hi there,

A 'cannot find symbol' error means that there's a variable name used, but not defined. Can you post the rest of your code so we can see which symbol is throwing the error.

Steve.

Hey Sebastian, I had the same problem you had but with a different cause. I noticed in your code above, you put a colon (:) at the end of the line instead of a semi colon (;). Hope this helps.

Good spot!

Thanks! I know it's several months later, but going through my code line by line was the only way I caught my error.