Help for this page

Select Code to Download


  1. or download this
        sub print_multiple {
            my ($count, $string, $format) = @_;
    ...
        }
    
        &print_multiple (5, 'hello, world.', 'bold');
    
  2. or download this
        sub print_multiple {
            my $b = shift;
    ...
        
        &print_multiple ($block);