From 97e4d00fa024a571522b57e2bd5089c460e3df6f Mon Sep 17 00:00:00 2001 From: Gregory Toprak <gdtoprak@users.noreply.github.com> Date: Thu, 23 Aug 2018 03:12:20 -0400 Subject: [PATCH] Fix aand --- aand.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aand.rkt b/aand.rkt index 05da087..8b7a384 100644 --- a/aand.rkt +++ b/aand.rkt @@ -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)]))