Skip to content

Instantly share code, notes, and snippets.

@Seich
Created June 15, 2012 20:07
Show Gist options
  • Save Seich/2938474 to your computer and use it in GitHub Desktop.
Save Seich/2938474 to your computer and use it in GitHub Desktop.
struct punto {
punto(int x1, int y1) : x(x1), y(y1) {}
int x;
int y;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment