Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Saleh Bubishate
1,613 PointsI couldn't understand how to do the 2nd task?? I wrote: bool getsDiscount, getDiscount = isMember; and it's wrong
I couldn't understand how to do the 2nd task?? I wrote: bool getsDiscount, getDiscount = isMember; and it's wrong
1 Answer
Justin Pacheco
15,060 PointsThis is my code and it worked.
BOOL isMember;
isMember = true;
BOOL getsDiscount;
getsDiscount = isMember;
Justin Pacheco
15,060 PointsJustin Pacheco
15,060 PointsYou spelled gets wrong.
Saleh Bubishate
1,613 PointsSaleh Bubishate
1,613 PointsThey asked for a single line statement. What you write is a two lines statement