lean4-htt/tests/compiler/append.lean
2020-10-25 09:16:38 -07:00

6 lines
159 B
Text

def main (xs : List String) : IO Unit :=
let ys1 := List.replicate 1000000 1;
let ys2 := List.replicate 1000000 2;
IO.println (toString (ys1 ++ ys2).length)