Help for this page
use strict; my $str = "abc"; uc($str); print $str;
use strict; my $str = "abc"; $str = uc($str); print $str;