Logo

Programming-Idioms

History of Idiom 50 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-08-20, 11:18:26

Version 8

2015-08-20, 11:19:25

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