Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Scott Sanders
Courses Plus Student 1,826 Pointsrepl error
java> PezDispenser pd = new PezDispenser("yoda");
ERROR: ';' expected
PezDispenser method$9hc4qk1o5sgtyi0pzbu3()
^
Why am i getting the error in repl
3 Answers

Michael William
2,455 Pointspublic static final int MAX_PEZ = 12 needs a semicolon.
try this...
public static final int MAX_PEZ = 12;

Michael William
2,455 PointsDid you load the Jave file into the repl?
java> :load PezDispenser.java
Loaded source file from PezDispenser.java
java> PezDispenser pd = new PezDispenser("Yoda");
PezDispenser pd = PezDispenser@49bc7d8d
java>
Otherwise, check the PezDispenser class to make sure you're not missing a semicolon somewhere.

Scott Sanders
Courses Plus Student 1,826 Pointsi did load it into repl ill link my code but i think i got it all the way its supposed to be https://w.trhou.se/cynyuw9d7i
Scott Sanders
Courses Plus Student 1,826 PointsScott Sanders
Courses Plus Student 1,826 Pointsthanks i didn't see that