*** empty log message ***

This commit is contained in:
2006-08-17 14:10:21 +00:00
parent 4b5372cc1a
commit 18910a5b87
4 changed files with 114 additions and 22 deletions

View File

@ -17,7 +17,13 @@ END {
substr (a, 3, 4);
*/
print tolower ("AbcDEF");
print toupper ("AbcDEF");
arr[0] = "xxx";
print split ("abc def abc", arr);
for (i in arr)
{
print i, " ", arr[i];
}
}

View File

@ -1,2 +1,3 @@
{ gsub ("abc", "&&&&"); print $0; }
{ print $0; }
//{ gsub ("abc", "&&&&"); print $0; }