Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.16 KB | None | 0 0
  1. (cl-defun foo (&key some-key &allow-other-keys)
  2.   (message "foo: %S" <what goes here?>))
  3.  
  4. (foo
  5.  :some-key "cow"
  6.  :another-key "pig"
  7.  :yet-another-key "sheep")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement