Help for this page

Select Code to Download


  1. or download this
    sub bind {
      my ($callback, @args) = @_;
      $callback->(@args);    
    }
    
  2. or download this
    bind(\&debug, "Entering xxx()");
    ...
    bind(\&logit, "Username : $user logged in")
    ... and so on...
    
  3. or download this
    sub bind {
      my $monad = shift;#self
    ...
    ...
    $monad->bind(\&logit, "Username : $user logged in")
    ... and so on...