Idris2/tests/idris2/interactive017/expected

5 lines
156 B
Plaintext
Raw Normal View History

1/1: Building RLE (RLE.idr)
RLE> uncompress Empty = Val []
uncompress (Run n x rest) = let Val ys = uncompress rest in Val (rep n x ++ _)
RLE> Bye for now!