Advertisement
tinyevil

Untitled

Feb 24th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Coq
  2.  
  3. Set = { nat, list, ... }
  4. Prop = { le, ... }
  5.  
  6. Type(1) = { Set, Prop, nat, list, le, ... }
  7. Type(2) = { Type(1), Set, Prop, nat, list, le ...}
  8.  
  9.  
  10. Lean
  11.  
  12.  
  13. Set = { nat, list, ... }
  14. Prop = { le, ... }
  15.  
  16. Type(1) = { Set, Prop }
  17. Type(2) = { Type(1) }
  18. Type(3) = { Type(2) }
  19. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement