1b39c5158Smillert$z = 'line one'; 2b39c5158Smillert$z 3b39c5158Smillert = 4b39c5158Smillert 'multiline statement'; 5b39c5158Smillert$z = 'line five'; 6b39c5158Smillert$z = ' 7b39c5158Smillert multiline 8b39c5158Smillert string 9b39c5158Smillert'; 10b39c5158Smillert$z = 'line ten'; 11b39c5158Smillert$z = <<EOS; 12b39c5158Smillert multiline 13b39c5158Smillert heredoc 14b39c5158SmillertEOS 15b39c5158Smillert$z = 'line fifteen'; 16b39c5158Smillertformat Z = 17b39c5158Smillert @<<<< multiline format 18b39c5158Smillert $z 19b39c5158Smillert. 20b39c5158Smillert$z = 'line twenty'; 21*6fb12b70Safresh1$z = time 22*6fb12b70Safresh1=>; 23*6fb12b70Safresh1$z++; 24