Help for this page

Select Code to Download


  1. or download this
    if( $condition )
    {
      $kernel->post( $s, event => @args );
      return;
    }
    
  2. or download this
    sub EVENT { $kernel->post( shift, event => @_ ) }; #basically
    
    ...
    
    EVENT $session, "argh" if $condition;