mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 14:10:56 -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.
|
||||
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");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue