hello world!

This commit is contained in:
2026-01-22 17:55:59 +00:00
commit 4ac780e3e9
6 changed files with 88 additions and 0 deletions

26
main.cpp Normal file
View File

@@ -0,0 +1,26 @@
/* main.cpp:
* Created: 2026-01-22
* Author: Aryadev Chavali
* License: See end of file
* Commentary:
*/
#include <cstdio>
int main(void)
{
puts("Hello, world!");
return 0;
}
/* Copyright (C) 2026 Aryadev Chavali
* 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 MIT License for details.
* You may distribute and modify this code under the terms of the MIT License,
* which you should have received a copy of along with this program. If not,
* please go to <https://opensource.org/license/MIT>.
*/