6 lines
89 B

export default class Point {
constructor(x, y) {
this.x = x;
this.y = y;
}
}