Append to end of vector



examples/vectors/append.R
animals = c("cat", "dog")
length(animals)

animals = append(animals, "mouse")
length(animals)