Help for this page

Select Code to Download


  1. or download this
    use asdf qw( . . . );
    
  2. or download this
     
    package asdf;
    require Exporter;
    ...
    my $class = shift;
    
    my @list = @_ if @_;  # @list contains the splitted string
    
  3. or download this
     
    split(' ', q/STRING/);