mirror of
https://github.com/bringout/oca-dms.git
synced 2026-04-19 10:02:01 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
432 B
Java
11 lines
432 B
Java
/**********************************************************************************
|
|
*
|
|
* 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.
|
|
}
|
|
}
|