27 lines
666 B
C++
27 lines
666 B
C++
/* 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>.
|
|
|
|
*/
|