Idris2/tests/base/data_list001/expected

5 lines
149 B
Plaintext
Raw Normal View History

2022-02-11 12:28:36 +03:00
1/1: Building List (List.idr)
Main> [[], [4], [3], [4, 5], [3, 5], [3, 4]]
2022-03-04 02:40:18 +03:00
[[6], [6, 4], [3, 6], [6, 4, 5], [3, 6, 5], [3, 4, 6]]
2022-02-11 12:28:36 +03:00
Main> Bye for now!