Help for this page

Select Code to Download


  1. or download this
    sub a { b() }
    sub b { c() }
    sub c { my ($caller, $args) = get_first_caller_with_args }
    
    a("test", [1,2,3]);
    
  2. or download this
    $caller = \&a, $args = ["test", [1,2,3]];