1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/aliased_array_operations_test.v
2021-06-29 12:14:37 +03:00

17 lines
225 B
V

type Ints = []int
fn test_first() {
ints := Ints([5, 10])
assert ints.first() == 5
}
fn test_last() {
ints := Ints([7, 4])
assert ints.last() == 4
}
fn test_index() {
ints := Ints([1, 5, 2, 3])
assert ints[2] == 2
}