Advertisement
JoelSjogren

Yudkowsky.agda

Mar 14th, 2019
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. open import Data.Product
  2. open import Data.Empty
  3.  
  4. postulate
  5. S D : Set
  6.  
  7. A1 = S → ⊥
  8. A2 = D → ⊥
  9. A3 = (S → ⊥) × (D → ⊥) → ⊥
  10.  
  11. postulate
  12. a1 : A1
  13. a2 : A2
  14. a3 : A3
  15.  
  16. bad : ⊥
  17. bad = a3 ( a1 , a2 )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement