Help for this page

Select Code to Download


  1. or download this
    sub create_subroutine_to_return_constant {
      my ($constant) = @_;
      my $newsub = sub { return $constant };
      return $newsub;
    }
    
  2. or download this
      my $PI = create_subroutine_to_return_constant(3);
      $z = $PI->();  # returns 3