Help for this page

Select Code to Download


  1. or download this
    sub find_all_textfiles {
        my ($dir) = @_;
    ...
    
        return @found;
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
        }
        return $a_text;
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
        }
        return @text;
    }
    
  4. or download this
    use strict;
    use warnings;
    ...
    
        return $a_text;
    }
    
  5. or download this
    sub process_text {
        my ($a_text) = @_;
    ...
        ##
        print "[Debug]\n";
    }