package TurtleGraphics does not exist.

import TurtleGraphics.StandardPen;

public class test {

public static void main(String args[]) {

Standard pen=new StandardPen();

pen.up();

pen.move(25);

pen.turn(90); pen.move(25);

pen.down();

}

}

IT SAYS THE FOLLOWING:

package TurtleGraphics does not exist.

*Someone please help me, i have to do homework, and I need this fixed.

Thank You.

[424 byte] By [brad13a] at [2007-10-3 9:51:20]
# 1
It means exactly what it says.
CaptainMorgan08a at 2007-7-15 5:08:39 > top of Java-index,Developer Tools,Java Compiler...
# 2

you need StandardPen.class in order to compile this properly..

and that class should be placed in TurtleGraphics..

it means that you either need a library (normally *.jar) somewhere in your classpath or need a folder named TurtleGraphics somewhere near this test file.. and it depends on the environment you set.

shocketa at 2007-7-15 5:08:39 > top of Java-index,Developer Tools,Java Compiler...
# 3
were could i find this?
brad13a at 2007-7-15 5:08:39 > top of Java-index,Developer Tools,Java Compiler...
# 4
No idea, it's not a standard package, but you could try Googling for it
ejpa at 2007-7-15 5:08:39 > top of Java-index,Developer Tools,Java Compiler...