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) Control Flow While and Do-While Loop

Mika Izmylove
Mika Izmylove
322 Points

what does it mean if it tells me that my code takes to long to run?

It seems that i did everything as needed, but the treehouse error yells at me "your code takes to long to run"

1 Answer

Carl S
Carl S
12,314 Points

Probably an Infinite loop that is running. Have you checked that the condition will be met?

A common mistake is to forget the increment (e.g. index++) inside a while-loop.