注意要标记不要求值。比方用‘ 或者list
> (list "a" "b" "c")
("a" "b" "c")
> ‘("a" "b" "c")
("a" "b" "c")
(set ‘my-list ‘())
(define-macro (location-file-based-on-modified-time dir-path from-seconds to-seconds)
(println (list from-seconds to-seconds))
调用代码例如以下:(FILE:location-file-based-on-modified-time "/home/dean/Videos/" 1409496931 1409496931)
结果:(1409496931 1409496931)
原文:https://www.cnblogs.com/ldxsuanfa/p/9933424.html