How to import a method from a package into another program? I don\'t know how to import... I write a lil\' code:
package Dan; public class Vik { public
Take out the method name from in your import statement. e.g.
import Dan.Vik.disp;
becomes:
import Dan.Vik;