Thursday, January 10, 2008

Heredoc Syntax

Because I always forget...
 

Perl heredoc syntax:
$var = <<EOF;
    text goes here
EOF
 
PHP heredoc syntax:
<?php
$str = <<<EOF
text goes here
EOF;
?>
 

Ruby heredoc syntax:
str = <<EOF
  text goes here
EOF
 
Python:
str = """text goes here
"""
(text is on the same line as the """ for parity with the other examples)

No comments: