mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-18 18:31:43 +03:00
7ea39af60e
- 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.
5 lines
161 B
Plaintext
5 lines
161 B
Plaintext
1/1: Building IEdit (IEdit.lidr)
|
|
Main> > transposeHelper [] [] = []
|
|
> transposeHelper (x :: xs) (y :: ys) = (x :: y) :: transposeHelper xs ys
|
|
Main> Bye for now!
|