在 elisp 中使用枚举方式一般是什么?

在 elisp 中使用枚举方式一般是什么?

emacs lisp impl enums 搜几遍,还没有什么可看文章

就是 symbol

用 common lisp, 省脑子

(cl-loop for i
	 from 0
	 for month
	 in '(january february march april may june july august september
                      october november december)
	 collect (cons i month))