home *** CD-ROM | disk | FTP | other *** search
Java Source | 1999-12-01 | 261 b | 14 lines |
- import java.applet.*;
- import java.awt.*;
-
- public class list3 extends Applet
- {
- public void paint (Graphics g)
- {
- g.drawLine (20, 20, 150, 150);
- g.drawLine (200, 10, 200, 300);
- g.drawLine (0, 200, 120, 200);
- super.paint (g);
- }
- }
-