Help for this page

Select Code to Download


  1. or download this
    sub func { print "first arg: $_[0]\n" }
    
    ...
    
    first arg: main
    first arg: main=ARRAY(0x80fbb0c)
    
  2. or download this
    sub test{
      my( $self, $name ) = @_;
      return $name;
    }