HelloWorld/HelloWorld.c

28 lines
465 B
C
Raw Normal View History

#include <stdio.h>
2018-11-05 15:35:32 -06:00
/*
* File: HelloWorld.c
2023-10-03 12:43:34 -05:00
*
* Description: This file exemplifies printing 'Hello, World!' in C.
*
* Package: AniNIX/HelloWorld
2018-11-05 15:35:32 -06:00
* Copyright: WTFPL
2023-10-03 12:43:34 -05:00
*
* Author: DarkFeather <ircs://aninix.net:6697/DarkFeather>
2018-11-05 15:35:32 -06:00
*/
2023-10-03 12:43:34 -05:00
static char * message = "Hello, World!";
2018-11-05 15:35:32 -06:00
/// <summary>
2023-10-03 12:43:34 -05:00
/// Prints 'Hello, World!'
2018-11-05 15:35:32 -06:00
/// </summary>
void HelloWorld() {
printf("%s\n",message);
}
// MAIN
int main(int argc, char* argv[]) {
2018-11-05 15:35:32 -06:00
HelloWorld();
return 0;
}