my $text = <<"EOT" This is my text. EOT ; #### my $text = <<"EOT"; This is my text. EOT #### my $text = "This\nis\nmy\ntext.\n"; #### while ( <<"EOT" =~ m/(.*is.*)/g ) This is my text, isn't it? EOT { print $1,"\n"; }
## my $text = <<"EOT"; This is my text. EOT ##
## my $text = "This\nis\nmy\ntext.\n"; ##
## while ( <<"EOT" =~ m/(.*is.*)/g ) This is my text, isn't it? EOT { print $1,"\n"; }