Very First Program in Eclipse using Java

Keep in Mind (Program using Eclipse)

Basic and Important Steps For every program in eclipse:

  1. Right-click on the file then new
  2. Java project
  3. Name your project start with capital latter
  4. Click on finish
  5. Click on the new project on your left-side corner
  6. Inside ava project click right on src
  7. Src-> new ->class
  8. The class and project name must be same
  9. For more help watch the video
Code.
public class Helloworld{
public static void main(string arg[])
{
system.out.println("Hello World");
}
}

Leave a Reply

Your email address will not be published. Required fields are marked *