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