diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-06-04 13:09:39 -0700 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-06-04 13:09:39 -0700 |
commit | 6dadca779691ae29c5a2bbfb4f2c2d101ca44911 (patch) | |
tree | d628ab0cb95370a032a201d1502095c58d327410 /util.lisp | |
parent | f272429796f6b9bb1d9d39373d196dc08a499e69 (diff) | |
download | lispruns-6dadca779691ae29c5a2bbfb4f2c2d101ca44911.tar.gz lispruns-6dadca779691ae29c5a2bbfb4f2c2d101ca44911.zip |
Added more CLI options
Diffstat (limited to 'util.lisp')
-rw-r--r-- | util.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,5 +10,5 @@ (defun max-length (lists) (reduce (lambda (a x) (max a x)) (mapcar #'length lists))) -(defun empty-p (s) +(defun nonempty-p (s) (not (zerop (length s)))) |