Help for this page

Select Code to Download


  1. or download this
    my $sub_name = 'this';
    my $x = do { no strict 'refs'; \&$sub_name };
    ...
    sub this {
        return "hi";
    }