I am trying to write hello world on java. My code is:
class myfirstjavaprog
{  
        public static void main(String args[])
        {
           System.out.println("Hello World!");
        }
}
And when I run java youtube.java on cmd I got this error:
Error: Could not find or load main class youtube.java
 
     
     
     
    