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
from kanren import eq, var
k = list(
eq( {var('k'):'v'}, {'k': 'v'} )({}) # var in key
)
v = list(
eq( {'k':var('v')}, {'k': 'v'} )({}) # var in value
)
k,v
out
([], [{~v: 'v'}])
The text was updated successfully, but these errors were encountered:
in
out
The text was updated successfully, but these errors were encountered: