v2 / vlib / v / slow_tests / repl / const.repl
6 lines · 6 sloc · 64 bytes · 6d3a2acf239b6941cd1b9f29344c2d7bffbb34c4
Raw
1mut a := [1, 2]
2pub const b = 3
3a << b
4a
5===output===
6[1, 2, 3]
7