Logo

Programming-Idioms

History of Idiom 50 > diff from v34 to v35

Edit summary for version 35 by :
New JS implementation by user [Worms]

Version 34

2016-02-16, 18:05:10

Version 35

2016-02-16, 20:22:49

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) {
	// to infinity
}