*** empty log message ***

This commit is contained in:
2006-06-27 10:53:04 +00:00
parent c7059afc6d
commit 2e70ee9475
6 changed files with 107 additions and 32 deletions

10
ase/test/awk/t11.awk Normal file
View File

@@ -0,0 +1,10 @@
BEGIN
{
print "this is only a test";
print;
print 1, 2, (3 >> 10);
print 1, 2, 3 >> 10;
print 3, 4, 5 >> 10;
close (10);
print "-------------" >> 10;
}