Help for this page

Select Code to Download


  1. or download this
    sub allow_morph { 1 }
    
    # OR 
    
    my $app = MyApp->new({allow_morph => 1});
    
  2. or download this
    sub test_step_module_package { 'MyTestStepModule' }
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    use base qw(Foo);
    
    sub file_print { return \ "Great!  You got here!\n" }
    
  4. or download this
    Content-Type: text/html
    
    Great!  You got here!
    
  5. or download this
    use CGI::Ex::Dump qw(debug);
    sub post_navigate {
        debug shift->dump_history;
    }
    
  6. or download this
    debug: cgi-bin/foo.pl line 15
      shift->dump_history = [
    ...
                "    main - post_print - post_print - 0.00001 - 0",
                "main - unmorph - unmorph (changed from Foo::Main to Foo) 
    +- 0.00000 - 1"
              ];