Closed gambiteer closed 6 months ago
I think this is just a typo, you need to remove the #f argument from the call to apply array-for-each in the definition of array-any:
#f
apply array-for-each
array-any
diff --git a/lib/srfi/231/transforms.scm b/lib/srfi/231/transforms.scm index ae081b43..7898e7df 100644 --- a/lib/srfi/231/transforms.scm +++ b/lib/srfi/231/transforms.scm @@ -400,7 +400,7 @@ (lambda (return) (apply array-for-each (lambda args (cond ((apply pred args) => return))) - #f + ;; #f array arrays) #f)))
I think this is just a typo, you need to remove the
#f
argument from the call toapply array-for-each
in the definition ofarray-any
: