@M1cha3lo0o :
I asked it... this was the response...does this make sense to you?
G00 X0 Y0 ; Rapid move to starting position
G01 Z-1 F50 ; Move down to a depth of 1 inch at a feed rate of 50 inches per minute
G01 X2 Y2 F20 ; Move diagonally to the right at a feed rate of 20 inches per minute
G01 X4 Y0 ; Move horizontally to the right
G03 X6 Y2 I-2 J2 ; Cut a quarter circle clockwise with center at (4,0) and radius of 2 inches
G02 X8 Y0 I-2 J-2 ; Cut another quarter circle counterclockwise with center at (6,2) and radius of 2 inches
G01 X10 Y10 ; Move diagonally up and to the right
M30 ; End program and reset machine
In this example, G00 is used for rapid movement (fast but not cutting), G01 is used for linear movement (cutting), and G02/G03 are used for circular movements. The letter "X" indicates horizontal movement, "Y" indicates vertical movement, and "Z"