トップ «前の日記(2013-03-31(Sun)) 最新 次の日記(2013-04-03(Wed))» 編集

屑俺日記

僕の備忘録(PC、UN*X、ネットワーク関連が中心)なんです。
自分の書いたところは適当(な時とか)に書き換えますので御了承を。


2013-04-02(Tue) 雨は...やんだか

標準出力三つ

(progn (prin1 "first")(print "second")(princ "third"))
"first"
"second"
third"third"
                                                                             
(progn (prin1 "first")(princ "second")(print "third"))
"first"second
"third"
"third"
                                                                             
(progn (print "first")(prin1 "second")(princ "third"))
                                                                             
"first"
"second"third"third"
                                                                             
(progn (print "first")(princ "second")(prin1 "third"))
                                                                             
"first"
second"third""third"
                                                                             
(progn (princ "first")(print "second")(prin1 "third"))
first
"second"
"third""third"
                                                                             
(progn (princ "first")(prin1 "second")(print "third"))
first"second"
"third"
"third"
 

わかりやすく、も...ならないか。


リンクはご自由にどうぞ。でもURLや内容が変った場合はあしからず。

index.htmlは ここから。