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

14 lines
307 B
Java
Raw Normal View History

2020-08-05 17:50:12 -04:00
package com.superlinter.JavaGood;
2020-08-05 14:35:14 -04:00
/* This is a simple Java program.
2020-08-05 18:04:13 -04:00
FileName : "HelloWorld.java" */
2020-08-05 17:04:04 -04:00
2020-08-05 17:50:12 -04:00
/**
* Represents a good Java file
*/
2020-08-05 18:04:13 -04:00
public static class JavaGood {
// Prints "Hello, World" to the terminal window
private void JavaGood() {
2020-08-05 14:35:14 -04:00
System.out.println("Hello, World");
}
}