HelloWorld/HelloWorld.c

28 lines
467 B
C
Raw Normal View History

#include <stdio.h>
2018-11-05 15:35:32 -06:00
/*
* File: helloworld.c
*
* Description: This file exemplifies printing 'Hello world!' in C.
*
* Package: AniNIX::Foundation/HelloWorld
* Copyright: WTFPL
*
* Author: DarkFeather <darkfeather@aninix.net>
*/
static char * message = "Hello world!";
/// <summary>
/// Prints 'Hello world!'
/// </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;
}