Skip to content

Instantly share code, notes, and snippets.

@deven98
Created June 3, 2018 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deven98/3444d0e8dfd80c467ae8856f12ffb27b to your computer and use it in GitHub Desktop.
Save deven98/3444d0e8dfd80c467ae8856f12ffb27b to your computer and use it in GitHub Desktop.
class Point {
num x, y;
Point(this.x, this.y);
// Named constructor
Point.origin() {
x = 0;
y = 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment