mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-29 03:24:02 +03:00
ff48bb2310
New search heuristic finds a slightly better zipWith, in particular.
9 lines
305 B
Plaintext
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!
|