add method

Vector add(
  1. Vector a, {
  2. Vector? b,
})

Implementation

Vector add(Vector a, {Vector? b}){
  throw('Not implimented in Vector type yet');
}