Synopsis: |
| touppercase.pl |
| ||
sub toUpperCase($)
{
return uc shift;
}
#-- unit tests
sub test_touppercase()
{
ut::assert(toUpperCase("AbCd"), "ABCD");
}
1;
|
| Contact me about content on this page using john_web-at-arrizza-dot-com |
| For Web Master or site problems contact: webadmin-at-arrizza-dot-com |
| Copyright John Arrizza (c) 2001-2010 |