Running a java program

class raghav{
   public static void main(String k[]){
        System.out.println("hello....");
   }
 
   }



for compling use javac filename

to run give : java CLASSNAME

if you give java filename when you are running
error:could not find or load the main class

Comments

Popular posts from this blog

commenting in java