Help for this page

Select Code to Download


  1. or download this
    sub capitalize_next {
        my ($thing) = @_;
        uc inline increase($thing);
    ...
        my ($foo) = @_;
        ++$foo;
    }
    
  2. or download this
    sub capitalize_next {
        my ($thing) = @_;
        uc do { local @_ = ($thing);
    ...
        my ($foo) = @_;
        ++$foo;
    }
    
  3. or download this
    sub capitalize_next {
        my ($thing) = @_;
        # uc inline increase($thing);
    }