Help for this page

Select Code to Download


  1. or download this
    --- /usr/lib/perl5/site_perl/5.8.8/MojoX/Session.pm 
    +++ /home/shmem/comp/perl/lib/MojoX/Session.pm
    ...
     
         if ($self->is_expired && $self->_is_stored) {
    
  2. or download this
    use MojoX::Session;
    my $session = MojoX::Session->new;
    ...
    print $session->data('bar'),$/;
    $session->flush();
    warn "end-of that.\n"
    
  3. or download this
    bar
    did we land yet?
    baz
    LAST ORDERS. FASTEN SEAT BELTS...
    end-of that.