rust lib for coordinate in 2d system
```rust use coord2d::*;
fn main() { let coord1: coords::Coord = coords::new(3, 4); let coord2: coords::Coord = coords::new(5, 13); let sum: coords::Coord = coord1 + coord2;
println!("{:?}", sum);
} ```
```rust use coord2d::*;
fn main() { let coord1: coords::Coord = coords::new(3, 4); let coord2: coords::Coord = coords::new(5, 13);
let h = vectors::new(coord1, coord2);
let l = vectors::new(coord1, coord2);
let m = h + l;
let s = h - l;
println!("{:?}", h);
println!("{:?}", m);
println!("{:?}", s);
} ```