Logo

Programming-Idioms

History of Idiom 50 > diff from v26 to v27

Edit summary for version 27 by :
New Ada implementation by user [Smaehtin]

Version 26

2016-02-16, 16:05:14

Version 27

2016-02-16, 16:58:17

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
loop
   null;
end loop;