in reply to Re: Can we use print <<HTML; twice in same file?
in thread [Solved]: Can we use print <<HTML; twice in same file?

HUMBUG! Did you try that?

You can even use the same tag more than once on the same line:

print <<"HTML", <<"HEAD", <<"BODY", <<"HTML"; <html> HTML <head><title>Test</title></head> HEAD <body></body> BODY </html> HTML

<html> <head><title>Test</title></head> <body></body> </html>

Enjoy, Have FUN! H.Merijn