use strict; my $str = "abc"; uc($str); print $str; #### use strict; my $str = "abc"; $str = uc($str); print $str;