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 Objective-C Basics Basic Data Types and Variables Boolean Variables

Peter Darke
Peter Darke
3,464 Points

Create a bool variable named 'isMember' and assign it a value of true. Do this all in one line of code.

bool isMember = true;

Compiler error: "too many errors emitted, stopping now 20 errors generated"

Code looks good to me. Can someone clarify there is an error on the challenge compiler or if I should be doing something differently? There was the same problem with previous challenge creating an int of value 13.

Thank you.

variable_assignment.mm
bool isMember = true;

1 Answer

bool isMember = true;