Strings - concatenation



examples/intro/strings.php
<?php
  print "Name<br>";
  print "Foo" . " " . "Bar" . "<br>";
?>