Skip to content

Instantly share code, notes, and snippets.

@fboeller
Last active August 8, 2019 18:15
Show Gist options
  • Save fboeller/a8bb8f1e88aae79cb84bce707f5fdd46 to your computer and use it in GitHub Desktop.
Save fboeller/a8bb8f1e88aae79cb84bce707f5fdd46 to your computer and use it in GitHub Desktop.
class Parallelogram implements Shape {
public double perimeter() {
return 0.;
}
public double area() {
return 0.;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment