Originally posted by kreagan
There we go:
Originally posted by JavaDocs for Math library
/* first.java */ package test; public class first { public static void display() { System.out.println(" welcome to java"); } } /*second.java */ package test; public class second { void check() { first.display(); } }
Comment