https://github.com/Kitware/CMake
Raw File
Tip revision: 9f5c2040bfd41a2c87624cec3d9504cf477c9fc3 authored by Brad King on 12 July 2019, 16:55:55 UTC
AIX: Explicitly compute executable exports for both XL and GNU
Tip revision: 9f5c204
HelloWorld2.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!");
    }
}
back to top