Higher-order functions in Elisp

后端 未结 3 733
盖世英雄少女心
盖世英雄少女心 2021-02-14 08:56

I created a function that returns a function in Elisp:

(defun singleton-set (elem)
  (defun f (n) (= n elem))
  f)

I try to run this in IELM, a

3条回答
提交回复
热议问题