Help for this page

Select Code to Download


  1. or download this
    my $state = {
       username  => $username,
    ...
    &one($state, $other_args);
    &two($state, @more);
    &three($state);
    
  2. or download this
    $state = new Object($username, $sessionid);
    
    $state->one($other_args);
    $state->two(@more);
    $state->three;