Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
I think you have an error in the conditional, instead of `(if ,(first exprs) ,(first exprs) (my-and ,@(rest exprs))) is `(if ,(first exprs) (my-and ,@(rest exprs)) ,(first exprs))
Yes! You are right! I should do more TDD to avoid this kind of mistake!
my-and or my-or. I think that the behavior of the macro seems more like an OR. Makes sense?
Yes, it is, it was an oversight of mine!
I think you have an error in the conditional, instead of
`(if ,(first exprs)
,(first exprs)
(my-and ,@(rest exprs)))
is
`(if ,(first exprs)
(my-and ,@(rest exprs))
,(first exprs))
Yes! You are right! I should do more TDD to avoid this kind of mistake!
my-and or my-or. I think that the behavior of the macro seems more like an OR. Makes sense?
Yes, it is, it was an oversight of mine!