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 trialMichael Greig
Front End Web Development Techdegree Student 10,328 PointsWhat're the rules around where you put your curly braces?
Hi there!
Just a quick one from the previous lesson...
Is it necessary to put a closing curly brace on a new line? Why is it not added at the end of the last line of code, like normal braces?
if (age<13) { //Insert exit code console.printf("Sorry you must be at least 13 to use this program. \n"); System.exit(0); }
Thanks,
Michael
1 Answer
Kourosh Raeen
23,733 PointsHi Michael - Take a look at the Google Java Style Guide regarding braces:
https://google.github.io/styleguide/javaguide.html#s4.1-braces
Michael Greig
Front End Web Development Techdegree Student 10,328 PointsMichael Greig
Front End Web Development Techdegree Student 10,328 PointsThanks! Much appreciated.