Gawk loops

From wikinotes
Revision as of 01:21, 19 July 2021 by Will (talk | contribs) (Created page with "= while loops = <blockquote> <syntaxhighlight lang="awk"> var = 0; while ( var < 10 ) { var += 1; } </syntaxhighlight> </blockquote><!-- while loops -->")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

while loops

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