- say FILEHANDLE LIST
- say FILEHANDLE
- say LIST
- say
-
Just like
print
, but implicitly appends a newline.say LIST
is simply an abbreviation for{ local $\ = "\n"; print LIST }
. 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
と同様ですが、暗黙に改行が追加されます。say LIST
は単に{ local $\ = "\n"; 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
(またはそれ以上) が宣言されると自動的に有効になります。