...
In the Package Explorer (left side) right click the arrow next to sandbox
to expand the project. Right click on the src
folder and then go to new → class. Name the class
...
TestClass
...
. Under "Which method stubs would you like to create?" check the box next to
...
public
...
static
...
void
...
main(String[]
...
args)
...
. Hit the Finish button. Then replace
Code Block |
---|
// TODO Auto-generated method stub |
by
Code Block | ||
---|---|---|
| ||
System.out.println("Hello World!") |
...