I'm new to java: When i'm studying package, there are lots of packages available in java platform.
This is my code:
package day1.examples;
import java.applet.*;
import java.awt.*;
public class HelloWorld extends Applet {
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
}
}
When i run this code, it shows this warning :"The import java.applet is never used"
My page look like this:
Can anyone help me?