Help for this page

Select Code to Download


  1. or download this
    function(
      aa => otherfunction(),
      bb => anotherone()
    );
    
  2. or download this
    function(
      aa => otherfunction(),
      bb => scalar( anotherone() )
    );
    
  3. or download this
    function(
      aa => otherfunction(),
      bb => anotherone() || ''
    );
    
  4. or download this
    my $another = anotherone(); 
    <code>
    ...
      aa => otherfunction(),
      bb => $anotherone
    );