Skip to content

Instantly share code, notes, and snippets.

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