Help for this page

Select Code to Download


  1. or download this
    BEGIN {
      *CORE::GLOBAL::ucfirst = sub {
    ...
    $_ = "I shouldn't be printing this, but I am anyway.";
    my $var = undef;
    print ucfirst $var;
    
  2. or download this
    BEGIN {
      *CORE::GLOBAL::ucfirst = sub {
         join ' ', map CORE::ucfirst, split / /, @_ ? $_[0] : $_;
      }
    }