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 trialchris densmore
1,403 PointsHey I need help with this I keep getting Bummer.
I can't seem to get this I keep putting in my code and thought I had it right.
// I have setup a java.io.Console object for you named console
String firstName = "Chris";
printf ("%s can code in java!", firstName);
3 Answers
Steven Mattia
1,698 PointsThe printf function is a function for Console objects. The comment states that there is a Console object called "console". So in order to use the printf function you must call it on that object. Thus replace:
printf ("%s can code in java!", firstName);
with:
console.printf("%s can code in Java!", firstName);
pluboj
5,954 PointsYou have a syntax error. It should be console.printf
chris densmore
1,403 PointsThanks guys