A note on say() and ORS grabbed from Damian's Perl6::Say.
Rafael Garcia-Suarez [Mon, 19 Dec 2005 19:18:48 +0000 (19:18 +0000)]
p4raw-id: //depot/perl@26406

pod/perlfunc.pod

index 0a87ece..0cdfa6d 100644 (file)
@@ -4699,6 +4699,9 @@ Just like C<print>, but implicitly appends a newline.
 C<say LIST> is simply an abbreviation for C<print LIST, "\n">,
 and C<say()> works just like C<print($_, "\n")>.
 
+That means that a call to say() appends any output record separator
+I<after> the added newline.
+
 This keyword is only available when the "say" feature is
 enabled: see L<feature>.