Michael Mathews wrote:
> 
> =head2 Proposal
> 
> Using a two-character syntax to start and end a multiline comment seems to
> be a good way to satisfy both the desired similarity to "#" and the desired
> uniqueness to avoid collision with real single-line quotes. I would suggest
> a (# many lines of comment #) syntax:
> 
>  this is not ignored;
>  neither is this; (# this
>  is a
>  multiline
>  comment so it IS
>  ignored #) but this is not ignored;

Nothing personal, but -- Barf.  Very non-perlish, IMHO.

  qc( here's some text which will evaluate to "silent undef". );

Could be very much like qw(), in the sense that

  % perl -w
  qc{
      once upon a time
      # now for the clincher
      happily ever after.
  };
  Possible attempt to put comments in qc() at - line 5.

One could use qw() or q() for this right now; but those result in
a value, which under some circumstances causes a warning issuance.


-- 
John Porter

Reply via email to