Advertisement
tinyevil

Untitled

Feb 25th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. Inductive GenericTuple : (list Type) -> Type :=
  2. | t_cons : forall (ts:list Type) (T:Type), T -> GenericTuple ts -> GenericTuple (T::ts)
  3. | t_nil : GenericTuple nil.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement