Skip to content

Instantly share code, notes, and snippets.

@AnnaBoro
Last active November 19, 2015 20:06
Show Gist options
  • Save AnnaBoro/3df5a09029afafa9746f to your computer and use it in GitHub Desktop.
Save AnnaBoro/3df5a09029afafa9746f to your computer and use it in GitHub Desktop.
+square
package lesson6.shapes;
import java.awt.*;
public class Square extends Rectangle{
public Square() {
}
public void draw(Graphics g) {
System.out.println("Draw square");
g.setColor(new Color(30, 230, 200));
g.fillRect(200, 100, 50, 50);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment