Skip to content

Instantly share code, notes, and snippets.

@zhouqiang-cl
Created December 21, 2016 14:55
Show Gist options
  • Save zhouqiang-cl/b9d9ce8ffef4898ce044cbe01bf7ceb8 to your computer and use it in GitHub Desktop.
Save zhouqiang-cl/b9d9ce8ffef4898ce044cbe01bf7ceb8 to your computer and use it in GitHub Desktop.
common lisp 的函数 FMAKUNBOUND
语法
fmakunbound name => name
参数和值
name --- 一个函数名
描述
移除函数或宏的定义
代码
* (defun test () 1)
TEST
* (fmakunbound 'test)
TEST
* (fboundp 'test)
NIL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment