【入門】CommonLisp【質問よろず】at TECH
【入門】CommonLisp【質問よろず】 - 暇つぶし2ch771:デフォルトの名無しさん
05/11/13 01:58:53
>>770
こんなんでどうだ。
(defun expand (x)
 (cond ((symbolp x) (expand (symbol-value x)))
     ((numberp x) x)
     ((listp x) (cons (car x) (mapcar #'expand (cdr x))))
     (t (error "unknown type: " x))))

(defun myfunc (x) (eval (expand x)))


次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch