touches tells you if a turtle is touching something

touches is true when a turtle is touching another turtle or a color.

bob = new Turtle red

if turtle.touches bob
  write("bob's touching me!!")
  fd 200
if turtle.touches blue
  write("it's touching me!!")
  fd 200