This repository was archived by the owner on Dec 29, 2018. It is now read-only.

Description
Rather than:
@export
(defparameter +moose-height+ 7)
@export
(defparameter +moose-width+ 11)
@export
(defvar *moose-times-seen* 0)
@export
(defun handle-moose-sighting () ...)
Is there a simple way to accomplish something like:
@export-block
(defparameter +moose-height+ 7)
(defparameter +moose-width+ 11)
(defvar *moose-times-seen* 0)
@export
(defun handle-moose-sighting () ...)
Thanks!