mirror of
https://github.com/bringout/oca-dms.git
synced 2026-04-19 13:02:10 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
199 B
C++
13 lines
199 B
C++
/*
|
|
*
|
|
* Copyright 2017-2019 MuK IT GmbH
|
|
* License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
|
*
|
|
*/
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello, world!\n";
|
|
return 0;
|
|
}
|