Logo

Programming-Idioms

History of Idiom 50 > diff from v69 to v70

Edit summary for version 70 by SpencerComin:
[Python] Corrected indentation to 4 spaces

Version 69

2021-05-25, 11:44:14

Version 70

2021-06-29, 18:22:04

Idiom #50 Make an infinite loop

Write a loop which has no end clause.

Ouroboros eating its own tail

Idiom #50 Make an infinite loop

Write a loop which has no end clause.

Ouroboros eating its own tail
Code
while True:
	pass
Code
while True:
    pass