12 lines
432 B
Java
Executable File
12 lines
432 B
Java
Executable File
/**********************************************************************************
|
|
*
|
|
* Copyright 2017-2019 MuK IT GmbH
|
|
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
|
*
|
|
**********************************************************************************/
|
|
class HelloWorldApp {
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello World!"); // Prints the string to the console.
|
|
}
|
|
}
|