Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by PENIS ( 17 years ago )
import java.applet.*;
import java.awt.*;
public class DrawingVariousStuff extends Applet {
int width = 200, height = 300;
public void init() {
setBackground(Color.red);
}
public void paint(Graphics g) {
g.setColor(Color.white);
g.fillRect(0, 0, 300, 300);
g.setColor(Color.white);
g.fillRect(300, 300, 300, 300);
g.setColor(Color.black);
g.fillRect(0, 298, 600, 4);
g.setColor(Color.black);
g.fillRect(298, 0, 4, 600);
}
}
Revise this Paste
Children: 12238