Logo

Programming-Idioms

History of Idiom 50 > diff from v35 to v36

Edit summary for version 36 by :
New Scala implementation by user [meshelton]

Version 35

2016-02-16, 20:22:49

Version 36

2016-02-16, 21:31:58

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){
  //Do stuff in here
}