mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-26 08:01:03 -05:00
Fix good java file?
This commit is contained in:
parent
3a1535e413
commit
3472359b2b
1 changed files with 5 additions and 5 deletions
|
@ -1,11 +1,11 @@
|
||||||
/* This is a simple Java program.
|
/* This is a simple Java program.
|
||||||
FileName : "HelloWorld.java". */
|
FileName : "HelloWorld.java". */
|
||||||
class java_good
|
|
||||||
{
|
package com.super-linter.JavaGood
|
||||||
// Your program begins with a call to main().
|
|
||||||
|
public class JavaGood {
|
||||||
// Prints "Hello, World" to the terminal window.
|
// Prints "Hello, World" to the terminal window.
|
||||||
public static void main(String args[])
|
public static void main(String[] args) {
|
||||||
{
|
|
||||||
System.out.println("Hello, World");
|
System.out.println("Hello, World");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue