mirror of
https://github.com/openharmony/third_party_cmake.git
synced 2026-07-25 07:05:34 -04:00
16 lines
237 B
Java
16 lines
237 B
Java
class HelloWorld3
|
|
{
|
|
public static void main(String args[])
|
|
{
|
|
D d;
|
|
d = new D();
|
|
d.printName();
|
|
|
|
E e;
|
|
e = new E();
|
|
e.printName();
|
|
|
|
System.out.println("Hello World!");
|
|
}
|
|
}
|