Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w
    while (<>) {
      my @foo = do_stuff($_);
      print $foo[1];
    }
    
  2. or download this
    sub do_stuff {
        return split /a/, @_;
    }