mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 09:45:46 -05:00
12 lines
292 B
Java
12 lines
292 B
Java
|
/* This is a simple Java program.
|
||
|
FileName : "HelloWorld.java". */
|
||
|
class HelloWorld
|
||
|
{
|
||
|
// Your program begins with a call to main().
|
||
|
// Prints "Hello, World" to the terminal window.
|
||
|
public static void main(String args[])
|
||
|
{
|
||
|
System.out.println("Hello, World)
|
||
|
}
|
||
|
}
|