lean2/tests/lean/run/set.lean

7 lines
132 B
Text
Raw Normal View History

import standard bool
using bool
definition set {{T : Type}} := T → bool
infix `∈`:50 := λx A, A x = '1
check 1 ∈ (λ x, '1)