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
You should use
import Dan.Vik;
This makes the class visible and the its public methods available.