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
λh> zero = lambda x.x
new expression parsed: zero = (λx.x)
λh> zero -> show_free_variables
OUT: []
λh> two = lambda x.y z
new expression parsed: two = (λx.(y z))
λh> two -> show_free_variables
OUT: [y, z]