Help for this page

Select Code to Download


  1. or download this
    sub foo { die 'call to foo' }
    print 'foo is ', defined &foo ? 'defined' : 'not defined', "\n";
    ...
    __END__
    foo is defined
    bar is not defined