pisigma-0.1.0.3: examples/Curry.pi
⊥ : Type;
⊥ = {};
-- Curry's paradox (usually ruled out by positivity check).
A : Type;
A = [A] → ⊥;
¬A : A → ⊥;
¬A = λ x → x x;
contradiction : ⊥;
contradiction = ¬A (λ x → ¬A x);
⊥ : Type;
⊥ = {};
-- Curry's paradox (usually ruled out by positivity check).
A : Type;
A = [A] → ⊥;
¬A : A → ⊥;
¬A = λ x → x x;
contradiction : ⊥;
contradiction = ¬A (λ x → ¬A x);