mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-01 09:49:24 +03:00
ff48bb2310
New search heuristic finds a slightly better zipWith, in particular.
5 lines
137 B
Plaintext
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!
|