mirror of
https://github.com/openharmony/third_party_cmake.git
synced 2026-07-21 08:15:27 -04:00
12 lines
156 B
Java
12 lines
156 B
Java
class HelloWorld
|
|
{
|
|
public static void main(String args[])
|
|
{
|
|
A a;
|
|
a = new A();
|
|
a.printName();
|
|
System.out.println("Hello World!");
|
|
}
|
|
}
|
|
|