/* Point2.h */
typedef struct { float x; float y; } point;
float distance(point a, point b);
point randPoint();
