Sample Method Heading
// Draw a line from point (x1, y1) to point
(int x1, int y1, int x2, int y2)
- Comment: explains the method precisely in English. Always begin with �//�
- Prefix modifiers public, void (will explain later)
- Method name: drawLine
- Parameters: x1, y1, x2, y2, and their types: int