Help for this page

Select Code to Download


  1. or download this
    sub x { my @a = (1, 2, 3) }
    sub y { \&x(); }
    
    my $h = &y;
    print "@$h\n";