Advertisement
tinyevil

Untitled

Feb 22nd, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. Inductive array (T:Type) : nat -> Type :=
  2. | ar_empty : array T 0
  3. | ar_ext : forall n, T -> array T n -> array T (S n).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement