Skip to content

Instantly share code, notes, and snippets.

@devindianushika
Created October 2, 2019 21:51
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 devindianushika/4455d1ca9c306102796e5cdecc8b7507 to your computer and use it in GitHub Desktop.
Save devindianushika/4455d1ca9c306102796e5cdecc8b7507 to your computer and use it in GitHub Desktop.
package com.poly.overriding;
public class Square implements Shape {
@Override
public void draw() {
System.out.println("Drawing Square");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment