
Our development workflow tooling prevents trailing blank lines from being added, but some such lines remain from before that was enforced. Remove them to make it easier to rename files without triggering enforcement.
11 lines
155 B
Java
11 lines
155 B
Java
class HelloWorld
|
|
{
|
|
public static void main(String args[])
|
|
{
|
|
A a;
|
|
a = new A();
|
|
a.printName();
|
|
System.out.println("Hello World!");
|
|
}
|
|
}
|