Logo

Programming-Idioms

History of Idiom 50 > diff from v28 to v29

Edit summary for version 29 by :
New Csharp implementation by user [zehberk]

Version 28

2016-02-16, 16:59:13

Version 29

2016-02-16, 17:17:31

Idiom #50 Make an infinite loop

Write a loop which has no end clause.

Idiom #50 Make an infinite loop

Write a loop which has no end clause.

Code
while (true)
{
    // Do something
}