Help for this page
sub foo { my @bar = qw(one two three four); return @bar; }
@foobar = foo() or warn "Yikes!\n";
@foobar = foo() || warn "Yikes!";