tamarin_vs19

Untitled

Apr 27th, 2021 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. -- 2б) Определите тип для представления бинарных деревьев
  2. inductive tree (α : Type) : Type
  3. | branch : α -> tree -> tree -> tree
  4. | leaf : α -> tree
Add Comment
Please, Sign In to add comment