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 trialPeter Darke
3,464 PointsCreate 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.
bool isMember = true;
1 Answer
Selfin India
475 Pointsbool isMember = true;
Vanessa Noel
Courses Plus Student 263 PointsVanessa Noel
Courses Plus Student 263 Pointsbool isMember; isMember = TRUE;
:)