Help for this page

Select Code to Download


  1. or download this
    sub f { my $x if 0; return $x++ }
    
  2. or download this
    { my $x; sub f { return $x++ } }
    
  3. or download this
    sub f { state $x; return $x++ }