This website requires JavaScript.
Explore
Help
Sign In
vieter-v
/
v
Watch
2
Star
0
Fork
You've already forked v
0
Code
Issues
Pull Requests
Releases
Activity
65159b8070
v
/
vlib
/
v
/
tests
/
repl
/
array.repl
8 lines
82 B
Plaintext
Raw
Blame
History
mut a := [1, 2, 3]
b := [4, 5]
a << b
a = a.filter(it%2==0)
a
===output===
[2, 4]
Reference in New Issue
View Git Blame
Copy Permalink