blob: faf7277fee1577494a5b0dac7db024273dbbceaf [file] [log] [blame]
class HelloWorld2
{
public static void main(String args[])
{
B b;
b = new B();
b.printName();
System.out.println("Hello World!");
}
}