v2 / vlib / v / slow_tests / repl / method_call1.repl
8 lines · 8 sloc · 83 bytes · a67bfebe9569859886c4c7675c87a0c7fe61cfae
Raw
1mut values := [1, 2, 3]
2values
3values.pop()
4values
5===output===
6[1, 2, 3]
73
8[1, 2]
9