used following in MS-DOSS command window
public class Welcome1 {
/*method*/
public static void main( String args [])
{
System.out.println( "Welcome to Java Programming!" );
}/*end main*/
}/*end class Welcome1*/
It was taken as an elementry example of a Jova pgm.
I saved it as Welcome1.java and used the MS-DOS command line, > java Welcome1 There was a momentary hesitation and I received the following Error message
Exception in thread "main" Java.lang.NoClassDefFoundError:Welcome1
I'm trying to learn Java on my own. I'd like some help in taking this first step. Any suggestions????
TonyPerez