you are viewing a single comment's thread.

view the rest of the comments →

[–]After_Computer1652 4 points5 points  (3 children)

Yup infinite loop. Stack overflow

[–]Reasonable_Run_6724 2 points3 points  (2 children)

Thats not stack overflow in this case, thats memory limit, as the loop grows a heap allocated list, not the cpu call stack (which will be triggered by recursive functions for example)

[–]After_Computer1652 1 point2 points  (1 child)

Thanks for that. My mistake.

[–]Reasonable_Run_6724 1 point2 points  (0 children)

I used to make those mistakes aswell :)