Help for this page

Select Code to Download


  1. or download this
    sub cheese {
       my @cheese = qw(cheddar swiss);
       if (wantarray) { return @cheese }
       else { return $cheese[0] }
    }
    
  2. or download this
    scalar (@_ = localtime(time))