Logo

Programming-Idioms

History of Idiom 50 > diff from v6 to v7

Edit summary for version 7 by :

Version 6

2015-08-20, 10:54:28

Version 7

2015-08-20, 11:18:26

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
for(;;){
	// Do something
}
Comments bubble
You may remove the curly braces if the blocks is only 1 instruction.