Help for this page

Select Code to Download


  1. or download this
    (\&{"Test::${pkg}::hello"})->($pkg);
    
  2. or download this
    my $sub = \&{"Test::${pkg}::hello"};
    $sub->($pkg);
    
  3. or download this
    ("Test::".$pkg)->hello(...);