using System; /* * File: helloworld.cs * * Description: This file exemplifies printing 'Hello world!' in C#. * * Package: AniNIX::Foundation/HelloWorld * Copyright: WTFPL * * Author: DarkFeather */ namespace AniNIX { public sealed class HelloWorld { /// /// Print 'Hello world!' /// public static void PrintHelloWorld() { Console.WriteLine("Hello world!"); } /// /// Code entry point /// public static void Main(string[] args) { HelloWorld.PrintHelloWorld(); return; } } }