> Consider this (upcoming) Perl6 code:
> 
> sub foo {
>   "Snarf the frobnitzers if x > 0.1";
>   my $x = shift;
>   # ...
> }

Have you guys totally missed the discussions on multi-line comments?

I argued for qc//, as in

  sub foo {
    qc(Snarf the frobnitzers if x > 0.1);
    my $x = shift;
    # ...
  }

Please check out RFC 5 and its discussions in the archive.

-- 
John Porter

Reply via email to