Idris2/tests/idris2/interactive010/expected

5 lines
138 B
Plaintext
Raw Normal View History

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