=over =item say FILEHANDLE LIST X =item say FILEHANDLE =item say LIST =item say Just like L|/print FILEHANDLE LIST>, but implicitly appends a newline. C is simply an abbreviation for C<{ local $\ = "\n"; print LIST }>. To use FILEHANDLE without a LIST to print the contents of L|perlvar/$_> to it, you must use a bareword filehandle like C, not an indirect one like C<$fh>. L|/say FILEHANDLE LIST> is available only if the L feature|feature/The 'say' feature> is enabled or if it is prefixed with C. The L feature|feature/The 'say' feature> is enabled automatically with a C (or higher) declaration in the current scope. =back