You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
312 B
5 lines
312 B
3 months ago
|
Code listing gsub for loop
|
||
|
article.append(addInsetCodeListing(["for (i=2; i<=3; i++ ) {", " gsub(\"^\\"|\\"$\", \"\", $i);", " gsub(\"\\"\\", \"\\"\", $i);", "}"]))
|
||
|
|
||
|
Code listing while loop
|
||
|
article.append(addInsetCodeListing([" while ( $NF ~ /^".*["]$/ ) {", " getline x;", " $0 = $0 "\n" x;", "}"]))
|