* 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 : Lisp:S式の理由
- Scrapbook : SourceForge.net: Lisp++
- Scrapbook : シャーロック・ホームズの冒険
- start-timerの件
- Scrapbook : Subversion/使い方 - 斜に
- Scrapbook : GnuMakeMaster - めらまんホームページ
- editorパッケージのbuiltin関数
- 2006-12-26
- Scrapbook : Sylpheed - lightweight and user-friendly e-mail client
- Scrapbook : よつばと!展
- Scrapbook : Common Lisp's Loop Macro Examples for Beginners
- Scrapbook : Routine-Work:/index.html
- Scrapbook : Karetta|Gaucheプログラミング
- memo : 汎用Makefile
page 12 - << : 0 : 1 : 2 : 3 : 4 : 5 : 6 : 7 : 8 : 9 : 10 : 11 : 12 : 13 : 14 : 15 : 16 : 17 : 18 : 19 : 20 : 21 : 22 : 23 : 24 : 25 : 26 : 27 : 28 : 29 : 30 : 31 : 32 : 33 : 34 : 35 : 36 : >>
* Scrapbook : Lisp:S式の理由
cgi?Lisp%3aS%e5%bc%8f%e3%81%ae%e7%90%86%e7%94%b1
S式はシンプルなルールで記述できて非常に美しいよなぁと常日頃から思ってます。
Lispはプログラマが言語設計者でもあることを想定しますにしびれた。
S式はシンプルなルールで記述できて非常に美しいよなぁと常日頃から思ってます。
* Scrapbook : SourceForge.net: Lisp++
* Scrapbook : シャーロック・ホームズの冒険
http://homepage3.nifty.com/coderachi/holms/advn/advnx.html
* start-timerの件
(let ((num 0) (time nil) (mes ""))
(defun test ()
(unless time (setq time (get-internal-real-time)))
(setq mes (concat mes (format nil "~d: ~d~%" (incf num) (- (get-internal-real-time) time))))
(msgbox "~a" mes)
(setq time (get-internal-real-time))))
(start-timer 5 'test)
(stop-timer 'test)
1: 0 2: 15 3: 5000 4: 5000 5: 5000 6: 5000変数の初期化漏れとかなのかな
