diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-05-31 23:23:58 -0700 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-05-31 23:23:58 -0700 |
commit | a76bfbf944d8ac89b7581ed378f4782084aa404a (patch) | |
tree | 8bc2267a73c9e2c0c7d35cca304dcf406b376851 /util.lisp | |
parent | 10d7a20a79f8e7746d965cfadf1757b3e3799858 (diff) | |
download | lispruns-a76bfbf944d8ac89b7581ed378f4782084aa404a.tar.gz lispruns-a76bfbf944d8ac89b7581ed378f4782084aa404a.zip |
User can create new category on the CLI
Diffstat (limited to 'util.lisp')
-rw-r--r-- | util.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,5 +10,5 @@ (defun max-length (lists) (reduce (lambda (a x) (max a x)) (mapcar #'length lists))) -(defun not-empty-string (str) - (not (zerop (length str)))) +(defun empty-p (s) + (not (zerop (length s)))) |