Help for this page

Select Code to Download


  1. or download this
    #. . . other code that does unrelated stuff . . .
    $name = "Larry Wall";
    $message = "Hello $name\n";
    print $message;
    
  2. or download this
    $message = "Hello ";
    #. . . other code that does unrelated stuff . . .
    $name = "Larry Wall";
    $message .= $name."\n";
    print $message;