Logo

Programming-Idioms

History of Idiom 50 > diff from v38 to v39

Edit summary for version 39 by programming-idioms.org:
[Ada] Comment emphasis

Version 38

2017-02-07, 22:47:28

Version 39

2017-03-07, 10:30:37

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;
Code
loop
   null;
end loop;
Comments bubble
'null;' means do nothing
Comments bubble
null; means "do nothing"