Loose-Info.com
Last Update 2008/05/18
TOP - Perl - 関数 - print

文字列を出力します。
ファイルハンドルの指定を省略すると、現在選択されているものが使用されます。(デフォルトはSTDOUT)

print リスト値1

リスト値1
出力される文字列からなるリスト値

print ファイルハンドル リスト値1

ファイルハンドル
出力先となるファイルハンドル
リスト値1
出力される文字列からなるリスト値

(例)
# 文字列単体で出力 print "test\n"; # リスト値の場合 print "test", "test", "\n"; open TESTOUT, ">test.txt"; # ファイルハンドルを使用してファイルに出力 print TESTOUT "test\n"; close TESTOUT;

実行結果
test testtest