Created
March 8, 2009 20:13
-
-
Save wfarr/75887 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (defmacro test (query &rest args) | |
| `(let ((query-args | |
| (mapcar | |
| (lambda (x) | |
| (coerce (symbol-name x) 'string)) | |
| (quote ,args)))) | |
| query-args)) | |
| (test 'select item.condition.temp weather.forecast location=30332) | |
| ;; ("item.condition.temp" "weather.forecast" "location=30332") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment