Hi all,
I am new to this
I am not from IT back ground as i work for finance. I read about Java techinology in my office all the time. I am interested to learn Java programming. I have gone through google and just starting to learn how to write " Hello world" in Java programming. I don't know where is my mistake in this little program.
I have named the java file as " Hello.java" as my public class file name is " Hello". Everytime when i try to compile it shows error on the first line of the program. Below is my Hello.java file. It would be very helpful if someone can help me.
==============
Public class Hello
{
// This is my first programming language
Public static void main ( string [] args )
{
// prints the world, Hello World on the screen
System.out.Println (" Hello world" );
}
}
many Thanks,
Ran