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