- 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
.print と同様ですが、
$\
の値の代わりに LIST の末尾に 改行が暗黙に追加されます。$_
の内容を表示するために LIST なしで FILEHANDLE を 使用するには、$fh
のような間接ファイルハンドルではなく、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.say は
"say"
機能 が有効かCORE::
が 前置されたときにのみ利用可能です。"say"
機能 は現在のスコープでuse v5.10
(またはそれ以上) が宣言されると自動的に有効になります。