Fix good java file?

This commit is contained in:
Thomas Hughes 2020-08-05 16:04:04 -05:00
parent 3a1535e413
commit 3472359b2b
No known key found for this signature in database
GPG key ID: B2D8646423EF5814

View file

@ -1,11 +1,11 @@
/* This is a simple Java program.
FileName : "HelloWorld.java". */
class java_good
{
// Your program begins with a call to main().
package com.super-linter.JavaGood
public class JavaGood {
// Prints "Hello, World" to the terminal window.
public static void main(String args[])
{
public static void main(String[] args) {
System.out.println("Hello, World");
}
}