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

5 lines
137 B
Plaintext

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