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 trialSebastian Koehler
1,451 Pointscannot find symbol
error: cannot find symbol
boolean isHit = prompter.promptForGuess():
2 Answers
Steve Hunter
57,712 PointsHi 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.
Ashley Shelden
4,894 PointsHey 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.
Steve Hunter
57,712 PointsGood spot!
Ashley Shelden
4,894 PointsThanks! I know it's several months later, but going through my code line by line was the only way I caught my error.