Merge pull request #6 from gdtoprak/patch-1

Fix aand
This commit is contained in:
Georges Dupéron 2018-08-23 09:40:00 +02:00 committed by GitHub
commit 691e7e0771
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,5 +10,5 @@
(syntax-parser
[(_) #'#true]
[(_ body:expr) #'body]
[(_ [variable:id condition:expr] rest ...+)
#'(aif condition (and-let rest ...) #false)]))
[(_ condition:expr rest ...+)
#'(aif condition (aand rest ...) #false)]))