λ or \ for lambda abstraction. For example: λx.x or \x.x.. (dot).(λx.x) y.true, false, if, and, or, not, succ, add, mul.5) are automatically converted into Church numerals._) is a placeholder for a value you’ll later fill in.
To substitute values into a function, enter a comma–separated list of variable names to replace.
For example, if your input is:
λm.λn.λf.λx.m f (n f x)
and you enter n,m, it will transform to:
(λm.(λn.λf.λx.m f (n f x)) _n) _m