Source of Nothingness - -1113%2F%2A%2A%2FOR%2F%2A%2A%2F1560%3DCAST%28%28CHR%28113%29%7C%7CCHR%28112%29%7C%7CCHR%28120%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%29%7C%7C%28SELECT%2F%2A%2A%2F%28CASE%2F%2A%2A%2FWHEN%2F%2A%2A%2F%281560%3D1560%29%2F%2A%2A%2FTHEN%2F%2A%2A%2F1%2F%2A%2A%2FELSE%2F%2A%2A%2F0%2F%2A%2A%2FEND%29%29%3A%3Atext%7C%7C%28CHR%28113%29%7C%7CCHR%28122%29%7C%7CCHR%28107%29%7C%7CCHR%28118%29%7C%7CCHR%28113%29%29%2F%2A%2A%2FAS%2F%2A%2A%2FNUMERIC%29%

* 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]]

* Scrapbook : NetBSDスタイルガイド

BSDmag/200004/style.html

* Scrapbook : yunoの雑記帳wiki - gcc

http://sugarpot.sakura.ne.jp/yuno/?gcc

* xyzzy lisp : format ~[

(format nil "~[zero~;one~;two~:;many~]" 1)
"one"
(format nil "~[zero~;one~;two~:;many~]" 10)
"many"
(format nil "~1[zero~;one~;two~:;many~]" 10)
"one"
(format nil "~:[false~;true~]" nil)
"false"
(format nil "~:[false~;true~]" 'true)
"true"
(format nil "~@[~A~]" nil)
""
(format nil "~@[~A~]" 'true)
"true"
; こういうこともできるらしい
(format nil "~#[zero~;one~;two~:;many~]" 10 10)
"two"

* xyzzy lisp : format ~$


(format nil "~10,4,30$" +123.45)
"               0123.4500000000"
(format nil "~10,4,30@$" +123.45)
"              +0123.4500000000"
(format nil "~10,4,30:$" +123.45)
"               0123.4500000000"
(format nil "~10,4,30:@$" +123.45)
"+              0123.4500000000"
(format nil "~10,4,30,'*$" +123.45)
"***************0123.4500000000"

* xyzzy : 宿題とか

一応書きとめ。
希望。
印象に残っている。

* Scrapbook : CLOCC - the Common Lisp Open Code Collection