create sql module.
[biolisp.git] / lambda-utils / abbrev.lisp
blob74e91bd7efcb2c57315f7e38ec00d5d8bdf12f75
1 (in-package :lambda-utils)
3 (defmacro abbrev (short long)
4 `(defmacro ,short (&rest args)
5 `(,',long ,@args)))
7 (abbrev mvbind multiple-value-bind)