Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
| import java.awt.*; | |
| import java.awt.event.*; | |
| public class ColorNet extends WindowAdapter implements MouseMotionListener | |
| { | |
| Frame f; | |
| Graphics g; | |
| int x,y; | |
| Dimension d; |
| import java.awt.*; | |
| import java.awt.event.*; | |
| public class Draw extends WindowAdapter implements MouseMotionListener, MouseListener | |
| { | |
| Frame f; | |
| Graphics g; | |
| int x,y; | |
| int prevx,prevy; |
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.