javac
I can't run apps compiled with javac.
Sample Program tha will not compile:
public class foo
{
public static void main(String[] args)
{
System.out.println("Hello World");
}
}
#javac foo.java
(compiles)
#java foo.class
Exception in thread "main" java.lang.NoClassDefFoundError: foo/class
I appoligize a head of time if this is very obvious it' 11 0' clock and my projects due tomorrow.
|