Source of Nothingness - -4326

* 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

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

http://clocc.sourceforge.net/

* Scrapbook : Bunkamura

http://www.bunkamura.co.jp/shokai/museum/lineup/06_escher/index.html

エッシャー展
1月13日まで

* Scrapbook : The lispreader library

http://www.complang.tuwien.ac.at/~schani/lispreader/

* Scrapbook : Lisp Language Implementations

http://www.cs.sunysb.edu/~algorith/implement/lisp.shtml

* Scrapbook : Cプログラミングのメモ