mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-27 03:14:21 +00:00
16 lines
237 B
Java
16 lines
237 B
Java
class HelloWorld2
|
|
{
|
|
public static void main(String args[])
|
|
{
|
|
B b;
|
|
b = new B();
|
|
b.printName();
|
|
|
|
C c;
|
|
c = new C();
|
|
c.printName();
|
|
|
|
System.out.println("Hello World!");
|
|
}
|
|
}
|