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 trial

Java Java Objects Meet Objects Welcome Back

Why is this code running on a separate line below with two open brackets? I ran this and I got an error.

// The instructor Craig Dennis was running this code in the Java terminal using jshell workspace.

Console jshell> String loweredWords = someWords.toLowerCase( toLowerCase(

1 Answer

Steven Parker
Steven Parker
229,732 Points

Until the parentheses are balanced, the command is not ready to run and should produce an error.

What you see in the video is him using a tab to get jshell to show what options might exist at that point, and then he continues typing in that command (on the next line) and submits it once it is complete (with balanced parentheses and a semicolon at the end).

I rewatched the course and I noticed that is exactly what he was doing. Thanks for pointing that out and taking the time to reply.