Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    ...
    sub get_x { die("uninitialized") if !defined($x); $x }
    
    1;
    
  2. or download this
    {
        my $x;
        sub set_x { validate($_[0]); $x = $_[0]; }
        sub get_x { die("uninitialized") if !defined($x); $x }
    }