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

iOS Swift Basics (retired) Types Strings

whats wrong with my coe println(\n"Bread"\n"Milk"\n"Honey")

i don't know why it won't compile

2 Answers

I think println() can only take one string, so you'll need to contain all the items within a single pair of quotes, like this: "BreadMilkHoney"

As for the newline characters, those also have to be inside a string. So simply place \n characters appropriately in the string "BreadMilkHoney".

Jeffrey Gossain
Jeffrey Gossain
5,935 Points

\n stays in the quotations. Also you don't need it before bread.