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

26 lines
570 B
C#
Raw Permalink Normal View History

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