diff options
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>. |