Help for this page

Select Code to Download


  1. or download this
    my $val = return1() . return2();
    
  2. or download this
    my $val = return1();
    $val .= return2();
    
  3. or download this
    my $val = (return1() // '') . return2();  # 5.10+