From a8dbb6d27648675e1711f0c39ca28b19daa9c575 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A2=D0=B0=D1=86=D1=83=D0=BA=20=D0=91=D0=BE=D0=B1=D1=80?= =?UTF-8?q?=D0=BE=D0=B2=D0=B8=D1=87?= Date: Mon, 8 Jan 2024 14:38:55 +0000 Subject: [PATCH] Add main.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit хуйца сосни --- main.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 main.cpp diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..2fc3bf6 --- /dev/null +++ b/main.cpp @@ -0,0 +1,23 @@ +// YaNaSolyah Project +// Copyright (C) 2024 Pidoras Pidorasovich +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +#include + +int main() +{ + std::cout << "Hello, World!" << std::endl; + return 0; +}