//////////////////////////////////////////////////////////////////////////////// // // Microsoft Research Singularity // // Copyright (c) Microsoft Corporation. All rights reserved. // // File: Hello.cs // // Note: Simple Singularity test program. // using System; namespace Microsoft.Singularity.Applications { public class Hello { public static int Main(String[] args) { Console.WriteLine("Hello World!"); while (true) { // loop forever } } } }