Idris2-boot/tests/idris2/interactive010/expected

6 lines
186 B
Plaintext
Raw Normal View History

1/1: Building IEdit (IEdit.idr)
Welcome to Idris 2 version 0.0. Enjoy yourself!
Main> zipHere [] ys = []
zipHere (x :: xs) (y :: ys) = (x, y) :: zipHere xs ys
Main> Bye for now!