-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem 119 - "is"-macro not available #77
Comments
We can fix this by including |
Unfortunatly I don't know how to do it. I thought it already is included in test.cljs But then why is this test necessary at all? |
No worries, I'll do it. What do you mean by:
|
All other problems simply start with testing but problem 119 tests with |
Yes, that's pretty weird, I agree! @oxalorg What is your policy on changing the puzzles of 4clojure itself? |
I just looked into the problems database problems.json |
In problem 119:
(is (= (__ :x [[:o :e :e]
the check of the solution fails completely because the is-macro isn't available.
Since this additional step is not needed, it should be omitted.
Edit:
As a workaround I added a definition for it at the begin of my function as a dummy:
(fn [p b] (defn is [arg] args) (...
The text was updated successfully, but these errors were encountered: