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 trialScott 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