I'm looking for the perl equivalent of a heredoc declaration. For some reason I can't recall how. In php it would work like this:
$foo = <<< EOD Stuff stuff stuff EOD; I need to declare a several line string in a quick and easy fashion. Any ideas? Christopher