1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
$z = 'line one'; $z = 'multiline statement'; $z = 'line five'; $z = ' multiline string '; $z = 'line ten'; $z = <<EOS; multiline heredoc EOS $z = 'line fifteen'; format Z = @<<<< multiline format $z . $z = 'line twenty';