#MkDrawfTuto page 3
#easy exercise :-(

Path {
    Width 2		# all dimensions, including this, are in points
    OutlineColour r0g0b255	# blue lines
    Style { EndCap Triangular }	# !Draw will show you what this means
    Move 100 100
    Line 200 100
    Curve  300 100  200 200  200 300    # a Bezier curve, ending at (200,300)
    Line 200 400
    Move 200 100		# a path can be made up of many subpaths
    Line 200 300
  }



