(create-struct & keys)
Returns a structure basis object.
;;Creates a person structure
(def person (create-struct :name :age))
;;Creates a structure with the given values associated with the structure keys
(struct person "Brad Cypert" 23)
{:name "Brad Cypert", :age 23}