Comment on Chicken Chicken Chicken: Chicken Chicken [pdf]Comments−cjg13yLISP version:(chicken chicken (chicken chicken chicken))Can you come up with an implementation of chicken that allows this code to run?−ajuc13yI think any 2 argument function will work? At least in clojure. > (defn chicken [x y] 1) #'sandbox5403/chicken > (chicken chicken (chicken chicken chicken)) 1−SlamminAtWork13y(define chicken list)
Comments
LISP version:
(chicken chicken (chicken chicken chicken))
Can you come up with an implementation of chicken that allows this code to run?
I think any 2 argument function will work? At least in clojure.
(define chicken list)