Help for this page

Select Code to Download


  1. or download this
    my $full_pkg = "Test::".$pkg;
    my $hello = $full_pkg->can('hello');
    $full_pkg->$hello(...);
    # Or: $hello->($full_pkg, ...);
    
  2. or download this
    my $full_pkg = "Test::".$pkg;
    $full_pkg->hello(...);
    
  3. or download this
    $full_pkg->$method_name(...);