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 trialNikhil Sharma
1,173 Pointsjava repl doesn't work in workspaces
when im trying to load the program , it says "expected ; " though i use semi colon , i tried even compiling it through javac , doesn't work for me
1 Answer
Alexander Nikiforov
Java Web Development Techdegree Graduate 22,175 PointsIf you have error, somewhat like this (Prompter class can be different for you):
ERROR: ';' expected
load Prompter.java;
^
ERROR: not a statement
load Prompter.java;
^
ERROR: ';' expected
load Prompter.java;
^
ERROR: not a statement
load Prompter.java;
^
Then you probably typed load
without semi-colon. Make sure you type it:
:load Prompter.java
If however you cannot compile file using the javac
:
javac Prompter.java
Then always do that first, to see if there are any errors, before going to REPL.
And if you have errors upon compilation, then post your code here
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsCan you provide your code? Thanks!
That might really help!
Good luck, Alex