mirror of
https://github.com/reactos/CMake.git
synced 2025-01-05 18:38:46 +00:00
18c3714f4f
Preserve semicolons in the value.
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!");
|
|
}
|
|
}
|