Help for this page

Select Code to Download


  1. or download this
    sub new {
        my $proto = shift(@_);
            my $class = ref($proto) || $proto;
    ...
    
            return @results;
    }
    
  2. or download this
    my @users = map {User->new($_)} @userIds;