Idris2/tests/idris2/interactive/interactive010/expected
2023-09-07 14:57:22 +01:00

5 lines
138 B
Plaintext

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