superlint/.automation/test/java/java_good_1.java

12 lines
292 B
Java
Raw Normal View History

2020-08-05 14:35:14 -04:00
/* This is a simple Java program.
FileName : "HelloWorld.java". */
class java_good
{
// Your program begins with a call to main().
// Prints "Hello, World" to the terminal window.
public static void main(String args[])
{
System.out.println("Hello, World");
}
}