Im having trouble with a simple hello world program lol! Im hoping someone can shed some light on this.
So the error im receiving is the following:
$ javac Hello.java
$ java Hello
Exception in thread "main" java.lang.NoSuchMethodError: main
So by the error, I can see that it's obviously missing main, but it's there:
class Hello
{
public static void main(String argv)
{
System.out.println("hello world");
}
}
I'm on Mac OS/X if it's any help.