lint/.automation/test/java/java_good_1.java

14 lines
311 B
Java
Raw Normal View History

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