HelloWorld/HelloWorld.c

28 lines
465 B
C

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