Logo

Programming-Idioms

History of Idiom 50 > diff from v70 to v71

Edit summary for version 71 by cousinitt:
New Scheme implementation by user [cousinitt]

Version 70

2021-06-29, 18:22:04

Version 71

2021-07-14, 03:18:26

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
(let forever ()
  (forever))
Comments bubble
Named let infinite loop with no arguments.