|
Re: Just installed Java: example won't compile
So you should definitely keep the package line where it was.
You should also have the top of the class be (after the package declaration and the import stuff):
public class 1310Robot extends SimpleRobot {
...
}
My guess is that you removed the "extends SimpleRobot" part, which would cause the "Unused Import" warning.
|