Logo

Programming-Idioms

History of Idiom 50 > diff from v82 to v83

Edit summary for version 83 by AlfRichter:
[Kotlin] Added Doc URL and Demo

Version 82

2022-02-24, 00:43:52

Version 83

2022-05-30, 17:20:56

Idiom #50 Make an infinite loop

Write a loop that has no end clause.

Ouroboros eating its own tail

Idiom #50 Make an infinite loop

Write a loop that has no end clause.

Ouroboros eating its own tail
Extra Keywords
unbounded,unlimited,never,ouroboros,uroboros
Extra Keywords
unbounded,unlimited,never,ouroboros,uroboros
Code
while (true) { }
Code
while (true) { }
Doc URL
https://kotlinlang.org/docs/control-flow.html#while-loops
Demo URL
https://pl.kotl.in/hBD-ItM4m