Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Simon Brooke 2023-03-29 08:50:44 +01:00
commit 64ff020cb4
No known key found for this signature in database
GPG key ID: A7A4F18D1D4DF987
4 changed files with 28 additions and 22 deletions

1
resources/count.lsp Normal file
View file

@ -0,0 +1 @@
(DEFUN COUNT (L) (COND ((EQ '() L) 0) (T (PLUS 1 (COUNT (CDR L))))))