Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
fixed_array_builtin_method_args_err.vv
12
lines
·
11
sloc
·
199 bytes
·
edbafcb70a73298c8bb4c93d280e50fd78727a8f
Raw
1
fn main() {
2
arr := [1, 2, 3]!
3
4
_ := arr.index()
5
_ := arr.index('hello')
6
_ := arr.contains()
7
_ := arr.contains('hello')
8
_ := arr.any()
9
_ := arr.any(22)
10
_ := arr.all()
11
_ := arr.all('hello')
12
}
13