首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Common Lisp - 函数

2013-03-21 
Common Lisp ---- 函数(defun foo (n)(dotimes (i 10)(dotimes (j 10)(when ( (* i j) n)(return-from fo

Common Lisp ---- 函数

    (defun foo (n)       (dotimes (i 10)          (dotimes (j 10)            (when (> (* i j) n)              (return-from foo (list i j))))))



8.  作为数据的函数--高阶函数

(有待更新)


9. 匿名函数

(有待更新)

热点排行