Help for this page

Select Code to Download


  1. or download this
      my $user_dir = File::Basename::dirname( $user_file );
    
  2. or download this
       my $user_dir = dirname( $user_file );
    
  3. or download this
      use MyModule qw( myfunc );
    
      my $result = myfunc( \%args );
    
  4. or download this
      use MyModule;
    
      my $result = MyModule->myfunc( \%args );
    
  5. or download this
      use MyModule;
    
      my $thingy = MyModule->new( \%args )
      my $result1 = $thingy->myfunc( \%overriding_args1 );
      my $result2 = $thingy->myfunc( \%overriding_args2 );