print/1/2
print/1/2 は、項のリストを出力する。
print (+リスト)
print (+ストリーム, +リスト)
print/1 は、現在出力ストリームにリストの全要素を、以下の形で出力する。
(関連 current_output/1)
- ソートされた "quoted(項)" の要素は、'writeq(項)'で書かれる。
- 他の全ての要素は、'write(要素)'で書かれる。
print/2は、ストリームにリストの全要素を、以下の形で出力する。
- ソートされた "quoted(項)" の要素は、'writeq(ストリーム,項)'で書かれる。
- 他の全ての要素は、'write(ストリーム, 要素)'で書かれる。
引数
ストリーム テキスト出力ストリーム
リスト 項のリスト
例
?- X=1,Y=2,Z is 1+2, print(['the sum of ', X, ' + ', Y, ' is ', Z]).
the sum of 1 + 2 is 3
標準
これらの述語は、ISO-Prolog 標準には含まれない。
関連
current_op/3,
op/3,
println/1/2,
read/1/2,
read_term/2/3,
write/1/2,
write_canonical/1/2,
write_term/2/3,
writeq/2.
戻る
続く..