Skip to content

Instantly share code, notes, and snippets.

@wobh
Last active June 10, 2016 21:33
Show Gist options
  • Save wobh/fce8df1497575c75023029904c9e4ab0 to your computer and use it in GitHub Desktop.
Save wobh/fce8df1497575c75023029904c9e4ab0 to your computer and use it in GitHub Desktop.
CL-USER>
(defun πŸ”ͺ🍳 (ingredients)
(case ingredients
(🌾 '🍚)
(🌽 '🍿)
(πŸ” 'πŸ—)
(πŸ„ 'πŸ”)
(t '🍲)))
(defun πŸ—’πŸŒ± (thing)
(member thing '(🍚 🍿)))
(defun πŸ—’ (food)
(if (member food '(🍚 🍿 πŸ” πŸ—))
'πŸ’©
'😷))
(defun 🍽 (dine food)
(if (eql '😷 dine)
'😷
(πŸ—’ food)))
(setf (fdefinition 'filter) #'remove-if-not)
#<FUNCTION REMOVE-IF-NOT>
CL-USER> (mapcar 'πŸ”ͺ🍳 '(🌾 🌽 πŸ„ πŸ”))
(🍚 🍿 πŸ” πŸ—)
CL-USER> (filter 'πŸ—’πŸŒ± '(🍚 🍿 πŸ” πŸ—))
(🍚 🍿)
CL-USER> (reduce '🍽 '(🍚 🍿))
πŸ’©
CL-USER>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment