Help for this page

Select Code to Download


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