2007-05-15 dynamic scope LISP メモ (defun hoge1 (x y) (declare (special x y)) (+ x (hoge2))) (defun hoge2 () (declare (special x y)) (* x y)) (hoge1 2 3) => 8 今はVB.NETの授業中です。 勉強が捗ります。 次はC++やろうかな。