*** empty log message ***

This commit is contained in:
2006-08-17 03:49:30 +00:00
parent bba63e00ac
commit 4b5372cc1a
2 changed files with 106 additions and 9 deletions

View File

@ -12,6 +12,12 @@ END {
print substr ("abc", "3", 5);
print substr ("abc", 4, 5);
/*
a[1] = 20;
substr (a, 3, 4);
*/
print tolower ("AbcDEF");
print toupper ("AbcDEF");
}