I want to make free variable checking function in lambda.
lambda experience is
type exp =
Var of var
| Lambda of var * exp
| App of exp * exp
and var = string
In checking function, if free variable is included, then return false, else true.
For example, Lambda ("x", Var "x")
is true, Lambda ("y", Var "x")
is false.