singrdk/base/Applications/Hello/Hello.cs

24 lines
517 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!");
return 0;
}
}
}