1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/array_nested_call_test.v
2021-09-23 08:50:37 +03:00

7 lines
159 B
V

fn test_array_nested_call() {
arr := ['abc', 'def']
all_is_letter := arr.all(it.bytes().all(it.is_letter()))
println(all_is_letter)
assert all_is_letter
}