qse/ase/test/awk/t11.awk

18 lines
240 B
Awk
Raw Normal View History

2006-10-03 14:57:01 +00:00
BEGIN {
2006-06-27 10:53:04 +00:00
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;
2006-06-27 14:18:19 +00:00
delete abc;
2006-06-27 14:32:03 +00:00
delete abc["aaaa"] ;
2006-06-28 03:44:40 +00:00
/*
print 1 > 2 + 3;
print 1 < 2 + 3;
*/
2006-06-27 10:53:04 +00:00
}