Keep in Mind (Program using Eclipse)
Basic and Important Steps For every program in eclipse:
- Right-click on the file then new
- Java project
- Name your project start with capital latter
- Click on finish
- Click on the new project on your left-side corner
- Inside ava project click right on src
- Src-> new ->class
- The class and project name must be same
- For more help watch the video
Code.
public class Helloworld{
public static void main(string arg[])
{
system.out.println("Hello World");
}
}