1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-16 05:26:58 +08:00
Files
CMake/Tests/Java/HelloWorld.java
2016-06-07 08:50:35 -04:00

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!");
}
}