Idris2/tests/base/data_vect001/expected
CodingCellist ba24892e2f
[ new ] Couple of useful things for Vect (#2904)
Co-authored-by: Ohad Kammar <ohad.kammar@ed.ac.uk>
Co-authored-by: André Videla <andre.videla@gmail.com>
Co-authored-by: Guillaume Allais <guillaume.allais@ens-lyon.org>
2023-03-03 15:58:44 +00:00

13 lines
367 B
Plaintext

1/1: Building Vect (Vect.idr)
Main> [(0 ** []), (1 ** [3]), (5 ** [3, 4, 5, 6, 7])]
[(0 ** ([], 3)), (1 ** ([3], 4)), (2 ** ([3, 4], 5))]
[(1 ** [2]), (2 ** [6, 2]), (4 ** [120, 24, 6, 2])]
[[2, 3, 4], [3, 4], [4], []]
[(1 ** [3]), (3 ** [60, 12, 3])]
['a', 'd', 'c', 'b']
[[1, 2, 3, 4], [5, 6, 7, 8]]
[[1, 5], [2, 6], [3, 7], [4, 8]]
[]
[0, 1, 2]
Main> Bye for now!