Help for this page

Select Code to Download


  1. or download this
    sub test_a {
        use warnings;
    ...
        my $arg = shift();
        ref $arg ? test_a($$arg[0]) : $arg;
    }
    
  2. or download this
    my $sub = sub { ...; $sub->(); .. };
    
  3. or download this
    sub test_a;
    sub test_a { ...; recurse into test_a here };