#include "point.h"
#include <iostream>

// this was just a test program for class point
int main() {
  point a(3,5);
  point b(7,10);
  std::cout << a.dist(b) << endl;
}
