Idris2/tests/idris2/literate007/expected
Edwin Brady ff48bb2310 Update literate test results
New search heuristic finds a slightly better zipWith, in particular.
2020-07-30 00:08:06 +01:00

9 lines
305 B
Plaintext

1/1: Building IEdit (IEdit.lidr)
Main> > zipHere [] [] = []
> zipHere (x :: xs) (y :: ys) = (x, y) :: zipHere xs ys
Main> Bye for now!
1/1: Building IEditOrg (IEditOrg.org)
Main> #+IDRIS: zipHere [] [] = []
#+IDRIS: zipHere (x :: xs) (y :: ys) = (x, y) :: zipHere xs ys
Main> Bye for now!