in reply to Re: Better ways to make multi-line comments in Perl?
in thread Better ways to make multi-line comments in Perl?
Also possible - but rude - is to put just a while(0) {} around it.That will only work if what you comment 1) compiles and 2) doesn't contain any compile time effects (like BEGIN, 'use' or a subrouting declaration).
#!/usr/bin/perl use strict; use warnings; while (0) { sub foo {print "Hello, world\n"} } foo () if defined &foo; __END__ Hello, world
Abigail
|
|---|