Dropping when-not (because its unless)
This commit is contained in:
4
d-.scm
4
d-.scm
@@ -6,7 +6,6 @@
|
||||
~>>
|
||||
as~>
|
||||
if-not
|
||||
when-not
|
||||
if-let
|
||||
for
|
||||
partial
|
||||
@@ -42,9 +41,6 @@
|
||||
(define-syntax-rule (if-not pred body ...)
|
||||
(if (not pred) body ...))
|
||||
|
||||
(define-syntax-rule (when-not pred body ...)
|
||||
(when (not pred) body ...))
|
||||
|
||||
(define-syntax-rule (if-let ([ident test]) expr ...)
|
||||
(let ([ident test])
|
||||
(if ident
|
||||
|
||||
Reference in New Issue
Block a user