Help for this page

Select Code to Download


  1. or download this
    $perl -d main.pl
    
    ...
      DB<2> S main*
    main::BEGIN
      DB<3>
    
  2. or download this
    use strict;
    require "somefile.pl";
    ...
    use newform;
    &newform::someFile();
    &newform::func1();
    
  3. or download this
    sub BEGIN
      {
        require "somefile.pl";
      }
    
  4. or download this
    &main::someFile();