Added cabal and vim dir
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
(define (and . lst) "logical and on multiple values" (fold && #t lst))
|
||||
(define (or . lst) "logical or on multiple values" (fold || #f lst))
|
||||
|
||||
(define (not x) "logical not" (if x #f #t))
|
||||
|
||||
(define (null? obj) "test for null object"
|
||||
(if (eqv? obj '())
|
||||
#t
|
||||
#f))
|
Reference in New Issue
Block a user