lean4-htt/tests/compiler/append.lean
2020-10-10 07:41:04 -07:00

6 lines
171 B
Text

new_frontend
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)