CLSQL
CLSQL 3.7.0 がリリースされた。
Win32 の SBCL と CLISP で動くようになった模様。喜ばしい。
CLSQL 3.7.0 がリリースされた。
Win32 の SBCL と CLISP で動くようになった模様。喜ばしい。
投稿者 Yoshinori Tahara 時刻: 22:11 0 コメント
ラベル: Common Lisp
バックトレース
(sb-debug:backtrace)
(sb-debug:backtrace-as-list)
投稿者 Yoshinori Tahara 時刻: 22:08 0 コメント
ラベル: Common Lisp
普通の関数をジェネリックファンクションにする。
(shadow 'length)
(defmethod length (o)
(cl:length o))
(defmethod length ((o symbol))
(length (symbol-name o)))
投稿者 Yoshinori Tahara 時刻: 22:03 0 コメント
ラベル: Common Lisp
デバッグ用セッティング
;;デバッグ用セッティング
(proclaim '(optimize (debug 3) (safety 3) (speed 0)))
投稿者 Yoshinori Tahara 時刻: 22:29 0 コメント
ラベル: Common Lisp