Help for this page

Select Code to Download


  1. or download this
    use v5.14;
    use strict;
    use warnings;
    ...
    
    say 'stat($fh): ', join " ", stat($fh);
    say '$sub->($fh): ', join " ", $sub->($fh);
    
  2. or download this
    stat($fh): 0 0 33206 1 0 0 0 0 1536590875 1536590875 1536590555
    *::stat{CODE} is undef
    $sub = \&stat;
    ...
    *::stat{CODE} is CODE(0x340be0)
    stat($fh): 0 0 33206 1 0 0 0 0 1536590875 1536590875 1536590555
    Undefined subroutine &main::stat called line 18.