import edu.cmu.ri.createlab.terk.robot.finch.Finch;
public static void turn(String[] args){
Finch myf = new Finch();
myf.turn(30,30);
myf.quit();
System.exit(0);
}
I don't understand why turn comes up with an error as in the java docs turn is a method.