CARVIEW |
- #say FILEHANDLE LIST
- #say FILEHANDLE
- #say LIST
- #say
-
Just like
print
, but implicitly appends a newline at the end of the LIST instead of any value$\
might have. To use FILEHANDLE without a LIST to print the contents of$_
to it, you must use a bareword filehandle likeFH
, not an indirect one like$fh
.say
is available only if the"say"
feature is enabled or if it is prefixed withCORE::
. The"say"
feature is enabled automatically with ause v5.10
(or higher) declaration in the current scope.
Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via the GitHub issue tracker or email regarding any issues with the site itself, search, or rendering of documentation.
The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via the Perl issue tracker, the mailing list, or IRC to report any issues with the contents or format of the documentation.