kutils/docs/flip.lisp

6 lines
84 B
Common Lisp

CL-USER> (format t "(- 7 3) -> ~A~%"
(funcall (flip #'- 3) 7))
(- 7 3) -> 4
NIL