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 trialBrian Maimone
Courses Plus Student 1,644 PointsHow switch from repl mode back to workspaces mode. Thanks
.
4 Answers
Daniel Babbev
10,354 PointsThe load command begins with ":" and your expression looks like:
:load Example.java
Daniel Babbev
10,354 PointsYou exit the repl by pressing Ctrl+C in Windows or Command+C in Mac.
Brian Maimone
Courses Plus Student 1,644 PointsGot it. Would you know why the load command doesn't work. I get ^
ERROR: not a statement
load Example.java;
^
ERROR: ';' expected
load Example.java;
^
ERROR: not a statement
load Example.java;
I get the same errors when I try to load PezDispenser.java.
Brian Maimone
Courses Plus Student 1,644 PointsThanks Dan.