Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Functions __SUB__Declare and assign a state var ... (Berikutnya)
Perl Functions A-Z

Print with newline

Daftar Isi

  • say FILEHANDLE LIST

  • say FILEHANDLE
  • say LIST
  • say

    Just like print, but implicitly appends a newline. say LIST issimply an abbreviation for { local $\ = "\n"; print LIST }. To useFILEHANDLE without a LIST to print the contents of $_ to it, you mustuse a real filehandle like FH, not an indirect one like $fh.

    This keyword is available only when the "say" featureis enabled, or when prefixed with CORE::; seefeature. Alternately, include a use v5.10 or later to the currentscope.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Functions __SUB__Declare and assign a state var ... (Berikutnya)