Preview:
interface Drawable{
	void draw();
}
class Rectangle implements Drawable{
	public void draw(){
		System.out.println("Drawing rectangle");
	}
}
class circle implements Drawable{
	public void draw(){
		System.out.println("Drawing circle");
	}
}	
class TestInterface{	
	public static void main(String[]args){
		Drawable d = new circle();
		d.draw();
	}
}	
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter