Compare commits

..

1 Enmetoj

Author SHA1 Message Date
Jaidyn Ann 15f68c47b7 Update README
Tweaking line-breaks, and mentioning the tests.
2024-05-27 22:55:37 -05:00
2 changed files with 4 additions and 15 deletions

View File

@ -72,17 +72,10 @@ $ sudo cp eksd /usr/local/bin/eksd
Bam, you've made and installed a binary! Cool!
### Tests
eksds tests can be run from a REPL using `ASDF:TEST-SYSTEM`, or from the
Makefile target “test”.
eksds tests can be run using the `test` Makefile target, or simply
`(asdf:test-system :eksd)` and `(asdf:test-system :eksd-unix)`.
```
* (asdf:test-system :eksd)
* (asdf:test-system :eksd/unix)
```
```
`$ make test
```
`$ make test`
## Misc

View File

@ -283,10 +283,6 @@
;; list → list
(defun de-tail (list)
"Return a list sans its last element."
"Remove the last element from a list."
(reverse (cdr (reverse list))))
;; list → object
(defun tail (list)
"Return the last element of a list."
(car (last list)))