Help for this page

Select Code to Download


  1. or download this
    my $string = 'start ' . $obj->middle() . ' end';
    
  2. or download this
    my $return = $obj->middle();
    my $string = "start $return end";
    
  3. or download this
    my $string = "start ${ \$obj->middle() }->{text} end";