Idris2/tests/idris2/literate011/expected

5 lines
137 B
Plaintext
Raw Normal View History

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