Help for this page

Select Code to Download


  1. or download this
    package Foo::Live;
    
    ...
        my $self = shift;
        $self->{iterator}->next;
    };
    
  2. or download this
    my $foo = Foo::Live->new;
    while (my $subfoo = $foo->next) { print "$subfoo\n" };
    
  3. or download this
    $o->foo unless eval { $foo->bar };
    
  4. or download this
    eval { $foo->bar };
    $o->foo if $@;