Help for this page

Select Code to Download


  1. or download this
      my ($foo, $bar)       = burk('foo', 'bar');
      my ($foo, $bar, $baz) = burk('foo', 'bar', 'baz');
    
  2. or download this
      my ($foo) = burk('foo');
    
  3. or download this
      my $foo = burk('foo');
    
  4. or download this
      my $foo = burk('foo', 'bar');
    
  5. or download this
      my $foo = foo(burk());
    
  6. or download this
      return @results if wantarray;
      carp("More than one value in result in scalar context for &foo")
        if @results > 1;
      return $results[0];