singrdk/base/Windows/Benchmarks/MinApp/HelloCS.cs

26 lines
570 B
C#

////////////////////////////////////////////////////////////////////////////////
//
// 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
}
}
}
}