*** empty log message ***

This commit is contained in:
2006-05-11 18:16:04 +00:00
parent 6d3ccf1fb1
commit 8692f11223
4 changed files with 13 additions and 6 deletions

View File

@ -1,5 +1,5 @@
BEGIN { i = 20; j = 0; }
{ i++; }
i % 2 { j++; }
{ i++; /*i = i + 1;*/ }
i % 2 { /*j ++;*/ j = j + 1; }
/*"1","2" || "Yes" {}*/
/*END { i = i + 1234; j = j + 1234; }*/

1
ase/test/awk/t8.awk Normal file
View File

@ -0,0 +1 @@
BEGIN { 10; 20; x=30; a=40; }