Help for this page

Select Code to Download


  1. or download this
    sub foo {
        my @bar = qw(one two three four);
        return @bar;
    }
    
  2. or download this
    @foobar = foo() or warn "Yikes!\n";
    
  3. or download this
    @foobar = foo() || warn "Yikes!";