Idris2-boot/tests/idris2/literate007/IEdit.lidr
Marc Petit-Huguenin 7ea39af60e
Literate programming
- Add support for .lidr files.
- Add new Parse Error for Literate fails.
- Add support for Case Split.
- Add support for Add Clause.
- Add support for Add Lemma.
- Add tests.
2020-03-29 11:58:00 -07:00

12 lines
273 B
Idris

> data Vect : Nat -> Type -> Type where
> Nil : Vect Z a
> (::) : a -> Vect k a -> Vect (S k) a
> %name Vect xs, ys, zs
> dupAll : Vect n a -> Vect n (a, a)
> dupAll xs = zipHere xs xs
> where
> zipHere : forall n . Vect n a -> Vect n b -> Vect n (a, b)