Help for this page

Select Code to Download


  1. or download this
    sub first {
      print "This is first\n";
    }
    ...
    
    dispatch('a');
    dispatch('b');
    
  2. or download this
    package FOO;
    sub first {
    ...
    my $foo = new FOO();
    $foo->dispatch('a');
    $foo->dispatch('b');