Closed hgiesel closed 4 years ago
(defn check [pre, c] #(and (starts-with? pre %) (= (count %) c))) (def my-check (check [0,0] 3)) (my-check [0,0,1]) /* error resolving pre and c */
Context of check is lost along the way.
check
Context of
check
is lost along the way.