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

C# C# Basics (Retired) Perform Looping

Testing something that wasn't covered in any previous lessons.

The first few questions in this quiz are using this: while (cycle == true) None of the previous lessons ever covered or even mentioned == How are students supposed to know what this is?

1 Answer

Steven Parker
Steven Parker
229,744 Points

:point_right: Good catch!

Perhaps before now, folks recognized that symbol from familiarity with other languages. That's the equality comparison operator. It compares the values on the left and right, and the entire expression becomes "true" if both values are the same, and "false" otherwise. This will be discussed starting around time index 0:45 in the upcoming video on if / else.

The fact that it was used before being explained is certainly a bug. You might want to report it using the Support page.