Gawk loops: Difference between revisions

From wikinotes
(Created page with "= while loops = <blockquote> <syntaxhighlight lang="awk"> var = 0; while ( var < 10 ) { var += 1; } </syntaxhighlight> </blockquote><!-- while loops -->")
 
(No difference)

Latest revision as of 01:21, 19 July 2021

while loops

var = 0;
while ( var < 10 ) {
   var += 1;
}