smugindividual
Programmer
import java.io.*;
public class lab
{
public static void main (String[] args)
{
System.out.print("Hello");
}
}
Above is my nothing of a program. It compiles, but when i run it, i keep getting:
Exception in thread "main" java.lang.NoClassDefFoundError: lab/java
Whats the deal with this.
public class lab
{
public static void main (String[] args)
{
System.out.print("Hello");
}
}
Above is my nothing of a program. It compiles, but when i run it, i keep getting:
Exception in thread "main" java.lang.NoClassDefFoundError: lab/java
Whats the deal with this.