*** empty log message ***

This commit is contained in:
2006-07-01 16:07:06 +00:00
parent 976c12d2bf
commit ea31037b6d
12 changed files with 148 additions and 116 deletions

View File

@ -7,6 +7,7 @@ BEGIN
//a[1] = 20;
//a[2] = 30;
/*
b["xxx"] = 20;
b["yyy"] = 30;
b[1] = 30;
@ -14,5 +15,9 @@ BEGIN
delete a;
delete b["1"];
*/
c[1] = 20;
c[1] = "aaa";
c = 30;
}

12
ase/test/awk/t14.awk Normal file
View File

@ -0,0 +1,12 @@
{
print "1111111111111";
}
{
print "22222222222222";
next;
}
{
print "33333333333333333";
}