$concated = $x < $y ? $x:$y : $y:$x; #### $string = "for $x + $y the answer is $($x+$y)\n"; #### $string = "for $x + $y the answer is " . ($x+$y) . "\n";
## $string = "for $x + $y the answer is $($x+$y)\n"; ##
## $string = "for $x + $y the answer is " . ($x+$y) . "\n";