Help for this page

Select Code to Download


  1. or download this
    sub create_subroutine_to_return_constant {
      my ($name, $constant) = @_;
      my $code = "sub $name { return $constant }";
      eval $code;
    }
    
  2. or download this
    create_subroutine_to_return_constant('PI', 3);
    $z = PI();      # returns 3