You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example (is nil ((mac () nil))) returns nil, although the macro expands to nil and this should be equivalent to (is nil nil).
The problem is that when the macro is evaluated, the value of the original form is replaced by the result of the macro expansion and create new nil object.
The text was updated successfully, but these errors were encountered:
For example
(is nil ((mac () nil)))
returnsnil
, although the macro expands tonil
and this should be equivalent to(is nil nil)
.The problem is that when the macro is evaluated, the value of the original form is replaced by the result of the macro expansion and create new
nil
object.The text was updated successfully, but these errors were encountered: