Idris2/tests/idris2/literate011/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

5 lines
137 B
Plaintext

1/1: Building IEdit (IEdit.md)
Main> zipHere [] [] = []
zipHere (x :: xs) (y :: ys) = (x, y) :: zipHere xs ys
Main> Bye for now!