*** empty log message ***

This commit is contained in:
2006-06-30 11:31:51 +00:00
parent f5d34f66bb
commit f47d3e366a
5 changed files with 88 additions and 33 deletions

View File

@ -29,6 +29,6 @@ BEGIN
getline x < "abc";
print x > "abc";
print 1 2 getline j j;
print (1 (2 getline j) j);
print "abc" 1 + 2 3 + 49 2 / 3;
}

8
ase/test/awk/t13.awk Normal file
View File

@ -0,0 +1,8 @@
BEGIN
{
a = 20;
/*a[1] = 20;
a[2] = 30;*/
delete a;
}