Source of Nothingness - -1969

* Menu

[[About:self:AboutPage.txt]] | [[Profile:http://iddy.jp/profile/southly/]] | [[まとめ:self:1163859357.txt]] | [[オリジナル:http://ninjinix.x0.com/rn/]] | [[xyzzy:http://raido.sakura.ne.jp/southly/xyzzy/site-lisp/]] | [[あんてな:http://i-know.jp/southly/listall]] | [[■:http://raido.sakura.ne.jp/southly/lisp/ni/view.lisp]] | [[buzz:http://www.google.com/profiles/southly#buzz]]

* xyzzy lisp : format ~T

後で書く
[[(ReadMore...) index.rb?1153798673.txt]]

* xyzzy lisp : format ~\n(改行)

(format nil "xy~
   zzy")
"xyzzy"
(format nil "xy~:
   zzy")
"xy   zzy"

(format nil "xy~@
   zzy")
"xy
zzy"

* 2006-07-15

* xyzzy lisp : format ~|

(format nil "~|")
"^L"
(format nil "~3|")
"^L^L^L"

* xyzzy lisp : format ~~

(format nil "~~")
"~"
(format nil "~4~")
"~~~~"

* Scrapbook : format関数