v := new(vector.Vector) // creates a new empty vector
v.PushBack(1) // adds the element 1 to the end of the vector v.PushBack(2) // adds the element 2 to the end of the vector
e := v.At(0) // gets the element at index 0 (in this case, 1)
v.Delete(0) // removes the element at index 0
for i := 0; i < v.Len(); i++ { fmt.Println(v.At(i)) }In these examples, `vector` is the package library that's being used.