diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-12-19 19:18:48 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-12-19 19:18:48 +0000 |
commit | f406c1e89d3d624d036135f8aa68fde0ba0da2d1 (patch) | |
tree | f84d6dd49508db520d6c57e56f2853b96b467780 /pod/perlfunc.pod | |
parent | e4769da7e4ba2947901539be526b741c6157838a (diff) | |
download | perl-f406c1e89d3d624d036135f8aa68fde0ba0da2d1.tar.gz |
A note on say() and ORS grabbed from Damian's Perl6::Say.
p4raw-id: //depot/perl@26406
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r-- | pod/perlfunc.pod | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 0a87eceba4..0cdfa6dd52 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -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>. |