mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-28 12:09:14 +00:00
15 lines
260 B
Plaintext
15 lines
260 B
Plaintext
|
|
/**
|
|
* This class is used to test the results of the langtools build.
|
|
*/
|
|
public class HelloWorld {
|
|
|
|
public HelloWorld();
|
|
|
|
/**
|
|
* The old standby!
|
|
* @param args The parameters are ignored.
|
|
*/
|
|
public static void main(java.lang.String... args);
|
|
}
|