#include /* * File: HelloWorld.c * * Description: This file exemplifies printing 'Hello world!' in C. * * Package: AniNIX::Foundation/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; }